Files
linux-scripts/wrestic/wrestic-backup-to-truenas-lxc.sh

14 lines
280 B
Bash

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