scripts

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 68f5f7739ba557ea20ad3f87fd13ea7b751da4f4
parent 52d1d5c5c4e442b36ea6d7af132e8520fd9f3bca
Author: Andrew Laack <andrew@laack.co>
Date:   Wed, 11 Mar 2026 01:33:14 -0500

No specials (sockets and such)

Diffstat:
Mbackups/simple.sh | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/backups/simple.sh b/backups/simple.sh @@ -43,24 +43,24 @@ fi backup-vps () { mkdir -p /home/backup/vps/var - rsync -v --delete --recursive root@laack.co:/var/ /home/backup/vps/var + rsync --no-special -v --delete --recursive root@laack.co:/var/ /home/backup/vps/var # TODO: Consider refactoring this. This sort of breaks with convention, but there is # nginx configuration data here that is a source of truth... mkdir -p /home/backup/vps/etc - rsync -v --delete --recursive root@laack.co:/etc/ /home/backup/vps/etc + rsync --no-special -v --delete --recursive root@laack.co:/etc/ /home/backup/vps/etc } backup-srv() { # backup private git repos + any additional things in srv (shouldn't be for now) mkdir -p /home/backup/brgr/srv - rsync -v --delete --recursive andrew@brgr:/srv/ /home/backup/brgr/srv + rsync --no-special -v --delete --recursive andrew@brgr:/srv/ /home/backup/brgr/srv } sync-shared() { - rsync -v --delete --recursive andrew@brgr:/home/andrew/personal-files ~ + rsync --no-special -v --delete --recursive andrew@brgr:/home/andrew/personal-files ~ }