Created
November 25, 2012 00:59
-
-
Save haarts/4141972 to your computer and use it in GitHub Desktop.
crashplan for Pi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- hosts: pi | |
user: pi | |
sudo: yes | |
tasks: | |
- name: install java | |
action: apt pkg=openjdk-6-jre state=installed | |
- name: install JNA | |
action: apt pkg=libjna-java state=installed | |
- name: move patched lib | |
action: copy src=libjtux.so dest=/tmp | |
- name: move Crashplan to Pi | |
action: copy src=CrashPlan_3.4.1_Linux.tgz dest=/tmp | |
- name: untar it | |
action: command tar -xzf /tmp/CrashPlan_3.4.1_Linux.tgz | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment