forked from kunsi/dotfiles
.bin/daily.sh: refine backup script
This commit is contained in:
parent
dbf35dee42
commit
33f022a2ee
1 changed files with 9 additions and 0 deletions
|
@ -7,14 +7,23 @@ set -x
|
||||||
pass git push
|
pass git push
|
||||||
git --git-dir=$HOME/.cfg/ --work-tree=$HOME push
|
git --git-dir=$HOME/.cfg/ --work-tree=$HOME push
|
||||||
|
|
||||||
|
# Fetch a fresh copy of all locally cloned git repos
|
||||||
|
for dir in $(find /home/kunsi/git -mindepth 1 -maxdepth 1 -type d)
|
||||||
|
do
|
||||||
|
git --git-dir=$dir/.git --work-tree=$dir fetch || true
|
||||||
|
done
|
||||||
|
|
||||||
# Do a backup.
|
# Do a backup.
|
||||||
rsync -zaAP --numeric-ids --delete --relative \
|
rsync -zaAP --numeric-ids --delete --relative \
|
||||||
--rsync-path="/usr/bin/rsync --fake-super" \
|
--rsync-path="/usr/bin/rsync --fake-super" \
|
||||||
-e "ssh" --delete-excluded \
|
-e "ssh" --delete-excluded \
|
||||||
--exclude "/home/kunsi/.cache/" \
|
--exclude "/home/kunsi/.cache/" \
|
||||||
--exclude "/home/kunsi/.config/Rambox/" \
|
--exclude "/home/kunsi/.config/Rambox/" \
|
||||||
|
--exclude "/home/kunsi/.config/Ferdi/" \
|
||||||
--exclude "/home/kunsi/.local/lib/python*/site-packages/" \
|
--exclude "/home/kunsi/.local/lib/python*/site-packages/" \
|
||||||
--exclude "/home/kunsi/.local/share/sddm/" \
|
--exclude "/home/kunsi/.local/share/sddm/" \
|
||||||
|
--exclude "/home/kunsi/.local/share/TelegramDesktop/tdata/user_data/cache/" \
|
||||||
|
--exclude "/home/kunsi/.mozilla/firefox/*/storage/*" \
|
||||||
--exclude "/home/kunsi/.npm/" \
|
--exclude "/home/kunsi/.npm/" \
|
||||||
--exclude "/home/kunsi/.nvm/" \
|
--exclude "/home/kunsi/.nvm/" \
|
||||||
--exclude "/home/kunsi/.platformio/" \
|
--exclude "/home/kunsi/.platformio/" \
|
||||||
|
|
Loading…
Reference in a new issue