updated wrestic local
This commit is contained in:
@@ -6,31 +6,6 @@ if [ "$EUID" -ne 0 ]
|
||||
exit
|
||||
fi
|
||||
|
||||
isInFile=$(cat /home/akanealw/.ssh/config | grep -c "truenas")
|
||||
if [ $isInFile -eq 0 ]
|
||||
then
|
||||
echo "" >> /home/akanealw/.ssh/config
|
||||
echo "Host truenas" >> /home/akanealw/.ssh/config
|
||||
echo "Hostname 192.168.1.41" >> /home/akanealw/.ssh/config
|
||||
echo "Port 22" >> /home/akanealw/.ssh/config
|
||||
echo "User akanealw" >> /home/akanealw/.ssh/config
|
||||
echo "IdentityFile ~/.ssh/truenas" >> /home/akanealw/.ssh/config
|
||||
chmod 600 /home/akanealw/.ssh/config
|
||||
fi
|
||||
|
||||
if [[ ! -f /home/akanealw/.ssh/truenas ]]
|
||||
then
|
||||
echo "-----BEGIN OPENSSH PRIVATE KEY-----" > /home/akanealw/.ssh/truenas
|
||||
echo "b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAAAMwAAAAtzc2gtZW" >> /home/akanealw/.ssh/truenas
|
||||
echo "QyNTUxOQAAACCDKl0DNjKWKlSpbCGeKjmA3tc0pKDvAiMfWQ83h0JVlQAAAJhNQ67sTUOu" >> /home/akanealw/.ssh/truenas
|
||||
echo "7AAAAAtzc2gtZWQyNTUxOQAAACCDKl0DNjKWKlSpbCGeKjmA3tc0pKDvAiMfWQ83h0JVlQ" >> /home/akanealw/.ssh/truenas
|
||||
echo "AAAEBoM2bsFqToHCHKO3F6MvOlObGaiNXw6UPcyBlyfbSAvYMqXQM2MpYqVKlsIZ4qOYDe" >> /home/akanealw/.ssh/truenas
|
||||
echo "1zSkoO8CIx9ZDzeHQlWVAAAAEWFrYW5lYWx3QExhcHRvcFBDAQIDBA==" >> /home/akanealw/.ssh/truenas
|
||||
echo "-----END OPENSSH PRIVATE KEY-----" >> /home/akanealw/.ssh/truenas
|
||||
chown akanealw:akanealw /home/akanealw/.ssh/truenas
|
||||
chmod 600 /home/akanealw/.ssh/truenas
|
||||
fi
|
||||
|
||||
if [[ ! -f /home/akanealw/.config/wrestic/wrestic.toml ]]
|
||||
then
|
||||
apt update
|
||||
@@ -39,8 +14,8 @@ if [[ ! -f /home/akanealw/.config/wrestic/wrestic.toml ]]
|
||||
mkdir -pv /home/akanealw/restic/restore
|
||||
mkdir -pv /root/restic/restore
|
||||
wget -qO /usr/local/bin/wrestic http://192.168.1.50/files/wrestic/wrestic
|
||||
wget -qO /home/akanealw/.config/wrestic/wrestic.toml http://192.168.1.50/files/wrestic/wrestic.toml
|
||||
wget -qO /home/akanealw/scripts/wrestic-backup-to-truenas.sh http://192.168.1.50/scripts/wrestic/wrestic-backup-to-truenas.sh
|
||||
wget -qO /home/akanealw/.config/wrestic/wrestic.toml http://192.168.1.50/files/wrestic/wrestic-local.toml
|
||||
wget -qO /home/akanealw/scripts/wrestic-backup-to-truenas.sh http://192.168.1.50/scripts/wrestic/wrestic-backup-to-truenas-local.sh
|
||||
sed -i "s/changemepls/$HOSTNAME/g" /home/akanealw/.config/wrestic/wrestic.toml
|
||||
sed -r 's/(resticbackups)(.*)/\1\L\2\E/g' /home/akanealw/.config/wrestic/wrestic.toml > /home/akanealw/.config/wrestic/wrestic2.toml
|
||||
mv /home/akanealw/.config/wrestic/wrestic.toml /home/akanealw/.config/wrestic/wresticbackup.toml
|
||||
|
||||
@@ -1,8 +1,13 @@
|
||||
#!/bin/bash
|
||||
|
||||
if ping -c 1 192.168.1.41 > /dev/null 2>&1
|
||||
then
|
||||
sudo wrestic backup
|
||||
else
|
||||
echo "TrueNAS is offline"
|
||||
then
|
||||
if [[ -d /mnt/truenas-backups/archivebackups ]]
|
||||
then
|
||||
sudo wrestic backup
|
||||
else
|
||||
echo "TrueNAS is offline"
|
||||
fi
|
||||
else
|
||||
echo "TrueNAS is offline"
|
||||
fi
|
||||
|
||||
Reference in New Issue
Block a user