desktop-ubuntu/_installs/restic.sh

20 lines
284 B
Bash
Raw Normal View History

2023-06-18 15:34:39 +02:00
#!/usr/bin/zsh
# install
sudo apt install -y \
restic
# make backup dir
restic init \
-p '/Data/.privat/restic/p.txt' \
-r '/Server/var/bak/.privat'
# backup
restic backup \
'/Data/.privat' \
-p '/Data/.privat/restic/p.txt' \
-r "/media/$USER/bak_daily/.privat"