2018-12-21 16:38:50 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2020-11-25 21:05:24 +00:00
|
|
|
set -euo pipefail
|
|
|
|
set -x
|
2018-12-21 16:38:50 +00:00
|
|
|
|
2020-11-25 21:05:24 +00:00
|
|
|
# Push some git repos
|
2018-12-21 16:38:50 +00:00
|
|
|
pass git push
|
2019-09-24 14:13:41 +00:00
|
|
|
git --git-dir=$HOME/.cfg/ --work-tree=$HOME push
|
2018-12-21 16:38:50 +00:00
|
|
|
|
2020-11-25 21:05:24 +00:00
|
|
|
# Do a backup.
|
|
|
|
rsync -zaAP --numeric-ids --delete --relative \
|
|
|
|
--rsync-path="/usr/bin/rsync --fake-super" \
|
|
|
|
-e "ssh" --delete-excluded \
|
|
|
|
--exclude "/home/kunsi/.cache/" \
|
|
|
|
--exclude "/home/kunsi/.config/Rambox/" \
|
|
|
|
--exclude "/home/kunsi/.npm/" \
|
|
|
|
--exclude "/home/kunsi/.nvm/" \
|
|
|
|
--exclude "/home/kunsi/.platformio/" \
|
|
|
|
--exclude "/home/kunsi/Downloads/" \
|
|
|
|
--exclude "/home/kunsi/Schreibtisch/" \
|
|
|
|
--exclude "/home/kunsi/VirtualBox VMs/" \
|
|
|
|
"/home/kunsi" "kunsi-t470@nas":backups/
|
|
|
|
|
|
|
|
rsync -zaAP --numeric-ids --delete --relative \
|
|
|
|
--rsync-path="/usr/bin/rsync --fake-super" \
|
|
|
|
-e "ssh" \
|
|
|
|
"/etc" "kunsi-t470@nas":backups/
|
|
|
|
|
|
|
|
# Do updates
|
|
|
|
yay -Syu
|