19 lines
528 B
Bash
19 lines
528 B
Bash
#!/bin/bash
|
|
|
|
if [ "$EUID" -ne 0 ]
|
|
then
|
|
echo "Please run as root"
|
|
exit
|
|
fi
|
|
|
|
apt update
|
|
apt-get install -y restic
|
|
mkdir -pv /home/akanealw/.config/wrestic
|
|
mkdir -pv /home/akanealw/restic/restore
|
|
mkdir /root/restic/restore
|
|
wget -O /usr/local/bin/wrestic http://192.168.1.50/files/wrestic/wrestic
|
|
wget -O /home/akanealw/.config/wrestic/wrestic.toml http://192.168.1.50/files/wrestic/wrestic.toml
|
|
chown -R akanealw:akanealw /home/akanealw/.config
|
|
chown -R akanealw:akanealw /home/akanealw/restic
|
|
chmod +x /usr/local/bin/wrestic
|