10 lines
231 B
Text
10 lines
231 B
Text
|
#!/bin/sh
|
||
|
|
||
|
source /root/sshagent >>/dev/null
|
||
|
|
||
|
TMPDIR=`mktemp -d /tmp/backups.XXXX`
|
||
|
|
||
|
cd $TMPDIR
|
||
|
git clone http://infrastructure.fedoraproject.org/ansible.git
|
||
|
ansible-playbook -i ansible/inventory ansible/playbooks/rdiff-backup.yml
|