X-Git-Url: https://git.p6c8.net/nextcloud-backup-restore.git/blobdiff_plain/f7117da82f1e493bdc1b2d583056526426788706..b34dbc415ef4a277ef972d2c728f072fb643d675:/NextcloudBackup.sh diff --git a/NextcloudBackup.sh b/NextcloudBackup.sh index 469d9d1..980d157 100644 --- a/NextcloudBackup.sh +++ b/NextcloudBackup.sh @@ -24,6 +24,8 @@ nextcloudFileDir="/var/www/nextcloud" # TODO: The directory of your Nextcloud data directory (outside the Nextcloud file directory) # If your data directory is located under Nextcloud's file directory (somewhere in the web root), the data directory should not be a separate part of the backup nextcloudDataDir="/var/nextcloud_data" +# TODO: The service name of the webserver. Used to start/stop webserver (e.g. 'service start') +webserverServiceName="nginx" # TODO: Your Nextcloud database name nextcloudDatabase="nextcloud_db" # TODO: Your Nextcloud database user @@ -77,8 +79,8 @@ echo # # Stop webserver # -echo "Stopping nginx..." -service nginx stop +echo "Stopping webserver..." +service "${webserverServiceName}" stop echo "Done" echo @@ -107,7 +109,7 @@ echo # Start webserver # echo "Starting webserver..." -service nginx start +service "${webserverServiceName}" start echo "Done" echo @@ -128,7 +130,7 @@ if [ ${maxNrOfBackups} != 0 ] then nrOfBackups=$(ls -l ${backupMainDir} | grep -c ^d) - if [ ${maxNrOfBackups} > ${nrOfBackups}} ] + if [ ${maxNrOfBackups} > ${nrOfBackups} ] then echo "Removing old backups..." ls -t ${backupMainDir} | tail -$(( nrOfBackups - maxNrOfBackups )) | while read dirToRemove; do