]> git.p6c8.net - nextcloud-backup-restore.git/commitdiff
Using systemctl
authorDecaTec <jr@decatec.de>
Thu, 13 Dec 2018 16:11:33 +0000 (17:11 +0100)
committerDecaTec <jr@decatec.de>
Thu, 13 Dec 2018 16:11:33 +0000 (17:11 +0100)
NextcloudBackup.sh
NextcloudRestore.sh

index 9a0cae458e0a674bc299de67f59777a6228a677d..fb20a47877a3c231d4d2f586297643dfd2889687 100644 (file)
@@ -24,7 +24,7 @@ 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 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 web server. Used to start/stop web server (e.g. 'service <webserverServiceName> start')
+# TODO: The service name of the web server. Used to start/stop web server (e.g. 'systemctl start <webserverServiceName>')
 webserverServiceName="nginx"
 # TODO: Your Nextcloud database name
 nextcloudDatabase="nextcloud_db"
 webserverServiceName="nginx"
 # TODO: Your Nextcloud database name
 nextcloudDatabase="nextcloud_db"
@@ -102,7 +102,7 @@ echo
 # Stop web server
 #
 echo "Stopping web server..."
 # Stop web server
 #
 echo "Stopping web server..."
-service "${webserverServiceName}" stop
+systemctl stop "${webserverServiceName}"
 echo "Done"
 echo
 
 echo "Done"
 echo
 
@@ -131,7 +131,7 @@ echo
 # Start web server
 #
 echo "Starting web server..."
 # Start web server
 #
 echo "Starting web server..."
-service "${webserverServiceName}" start
+systemctl start "${webserverServiceName}"
 echo "Done"
 echo
 
 echo "Done"
 echo
 
index 87fea20c41b4b6209e5bc9ebf7b5df6c1f8671a7..b64d75825f44ce14836e9c6288779a097dadfd20 100644 (file)
@@ -23,7 +23,7 @@ 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 restored separately
 nextcloudDataDir="/var/nextcloud_data"
 # 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 restored separately
 nextcloudDataDir="/var/nextcloud_data"
-# TODO: The service name of the web server. Used to start/stop web server (e.g. 'service <webserverServiceName> start')
+# TODO: The service name of the web server. Used to start/stop web server (e.g. 'systemctl start <webserverServiceName>')
 webserverServiceName="nginx"
 # TODO: Your Nextcloud database name
 nextcloudDatabase="nextcloud_db"
 webserverServiceName="nginx"
 # TODO: Your Nextcloud database name
 nextcloudDatabase="nextcloud_db"
@@ -85,7 +85,7 @@ echo
 # Stop web server
 #
 echo "Stopping web server..."
 # Stop web server
 #
 echo "Stopping web server..."
-service "${webserverServiceName}" stop
+systemctl stop "${webserverServiceName}"
 echo "Done"
 echo
 
 echo "Done"
 echo
 
@@ -139,7 +139,7 @@ echo
 # Start web server
 #
 echo "Starting web server..."
 # Start web server
 #
 echo "Starting web server..."
-service "${webserverServiceName}" start
+systemctl start "${webserverServiceName}"
 echo "Done"
 echo
 
 echo "Done"
 echo
 

patrick-canterino.de