Skip to content

Instantly share code, notes, and snippets.

@haarts
Created November 25, 2012 00:59
Show Gist options
  • Save haarts/4141972 to your computer and use it in GitHub Desktop.
Save haarts/4141972 to your computer and use it in GitHub Desktop.
crashplan for Pi
---
- 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