Files
linux-scripts/wrestic/wrestic-backup-to-truenas-lxc.sh
2023-12-05 19:38:42 -06:00

15 lines
328 B
Bash
Executable File

#!/bin/bash
if ping -c 1 192.168.1.41 > /dev/null 2>&1
then
if [[ -f /mnt/resticbackups/etc/config ]]
then
sudo wrestic backup
sudo restic cache --cleanup
else
echo "TrueNAS is offline"
fi
else
echo "TrueNAS is offline"
fi