hs.scripts/rollback/nextcloud/setstate.sh
2024-04-25 13:49:12 +02:00

23 lines
775 B
Bash
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#!/bin/bash
source $HOME/scripts/config.env
read -p "DANGER everything including config.php will be made permanent. Proceed? (Yy)" -n 1 -r
echo
if [[ ! $REPLY =~ ^[Yy]$ ]]
then
[[ "$0" = "$BASH_SOURCE" ]] && exit 1 || return 1 # https://stackoverflow.com/questions/1885525/how-do-i-prompt-a-user-for-confirmation-in-bash-script
fi
cd $HOME/nextcloud
$php occ maintenance:mode --on
echo "creating database dump..."
pg_dump -Fc -U $dbuser -d $db > $HOME/var/db/nextcloud.dump
echo "syncing data..."
rsync -aAX --delete /home/storage/$pac/users/$user/data/ /home/storage/$pac/users/$user/data_clean/
echo "syncing nextcloud..."
rsync -aAX --delete /home/pacs/$pac/users/$user/nextcloud/ /home/pacs/$pac/users/$user/nextcloud_clean/
$php occ maintenance:mode --off