Aldonas alŝutan helposkripton

This commit is contained in:
Jaidyn Ann 2024-01-30 17:04:07 -06:00
parent ed720b1755
commit deaadf9be1

18
alŝuti.sh Normal file
View File

@ -0,0 +1,18 @@
#!/bin/sh
RSYNC_DRYRUN="--dry-run"
if test "$1" = "--real"; then
RSYNC_DRYRUN=""
fi
rsync $RSYNC_DRYRUN --recursive --delete --archive --verbose custom $(whoami)@xwx.moe:/var/lib/forgejo/
if test "$RSYNC_DRYRUN" = "--dry-run"; then
echo "=================================================="
echo "Ran in --dry-run mode!"
echo "Try '$(basename "$0") --real' if the output seems OK."
echo "=================================================="
exit 0
fi
ssh $(whoami)@xwx.moe /usr/local/bin/update-forgejo-config