]> git.p6c8.net - nextcloud-backup-restore.git/commitdiff
check args
authorDecaTec <jr@decatec.de>
Sat, 5 Jan 2019 08:22:47 +0000 (09:22 +0100)
committerDecaTec <jr@decatec.de>
Sat, 5 Jan 2019 08:22:47 +0000 (09:22 +0100)
NextcloudRestore.sh

index 3903e8aa973459be939a94ebe0f29b953789bec8..fabd463acbe9ac2fd761b6ea71a4a58a842d5c71 100644 (file)
@@ -21,7 +21,7 @@ backupMainDir=$2
 
 if [ -z "$backupMainDir" ]; then
        # TODO: The directory where you store the Nextcloud backups (when not specified by args)
 
 if [ -z "$backupMainDir" ]; then
        # TODO: The directory where you store the Nextcloud backups (when not specified by args)
-    backupMainDir="/mnt/hdd1/nextcloudb_ackups"
+    backupMainDir="/mnt/hdd1/nextcloudb_backup"
 fi
 
 echo "Backup directory: $backupMainDir"
 fi
 
 echo "Backup directory: $backupMainDir"
@@ -70,10 +70,10 @@ errorecho() { cat <<< "$@" 1>&2; }
 #
 # Check if parameter given
 #
 #
 # Check if parameter given
 #
-if [ $# != "1" ]
+if [ $# != "1" ] | [ $# != "2" ]
 then
     errorecho "ERROR: No backup name to restore given!"
 then
     errorecho "ERROR: No backup name to restore given!"
-       errorecho "Usage: NextcloudRestore.sh 'BackupDate'"
+    errorecho "Usage: NextcloudRestore.sh 'BackupDate' ['BackupDirectory']"
     exit 1
 fi
 
     exit 1
 fi
 

patrick-canterino.de