correct the path for the restic excludes

This commit is contained in:
Andreas Zweili 2021-11-15 17:08:45 +01:00
parent b8ad9de4f2
commit 5358b5aa68
1 changed files with 2 additions and 2 deletions

View File

@ -5,14 +5,14 @@ export RESTIC_PASSWORD={{ restic_password }}
if [ $(hostname) == management ]
then
restic backup /home/andreas --exclude-file=/home/andreas/.config/restic/excludes.txt
restic backup /home/andreas --exclude-file=/etc/restic/excludes.txt
fi
if [ $(hostname) == {{ ansible_facts['hostname'] }} ]
then
cd {{ docker_project_path }}
sudo docker-compose pause
sudo -E restic backup /home/ansible --exclude-file=/home/ansible/.config/restic/excludes.txt
sudo -E restic backup /home/ansible --exclude-file=/etc/restic/excludes.txt
fi
if [[ -x /usr/local/bin/docker-compose || -x /usr/bin/docker-compose ]]