adjust backup script for new locations

This commit is contained in:
Knut Ahlers 2016-07-21 15:58:33 +02:00
parent 492c83cf54
commit b48c2af6b6
Signed by: luzifer
GPG key ID: DC2729FDD34BE99E

View file

@ -1,14 +1,7 @@
#!/bin/bash -e
if [ -e /Volumes ]; then
SHACHECK="2688057d3ddc1b9b5a5a4309f89a2bcb57cc033b /Volumes/Duplicity/mountcheck"
if ! ( echo "${SHACHECK}" | shasum -cs ); then
echo "/Volumes/Duplicity does not seem to be mounted or wrong volume"
exit 1
fi
fi
CMD=${1:-backup}
HOSTNAME=$(hostname -s)
exec vault2env /secret/private/duplicity/$(hostname -s) -- \
duplicity-backup ${CMD}
exec vault2env /secret/private/duplicity/${HOSTNAME} -- \
duplicity-backup -f ${HOME}/.duplicity/${HOSTNAME}.yaml ${CMD}