15 lines
333 B
Bash
Executable File
15 lines
333 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if ping -c 1 192.168.1.41 > /dev/null 2>&1
|
|
then
|
|
if [[ -d /mnt/truenas-backups/resticbackups ]]
|
|
then
|
|
sudo wrestic backup
|
|
sudo restic cache --cleanup
|
|
else
|
|
echo "TrueNAS is offline"
|
|
fi
|
|
else
|
|
echo "TrueNAS is offline"
|
|
fi
|