]> gitweb.fluxo.info Git - slackbuilds.git/commitdiff
backupninja: rub fix
authorrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>
Wed, 1 Nov 2006 15:11:37 +0000 (15:11 +0000)
committerrhatto <rhatto@370017ae-e619-0410-ac65-c121f96126d4>
Wed, 1 Nov 2006 15:11:37 +0000 (15:11 +0000)
git-svn-id: svn+slack://slack.fluxo.info/var/svn/slackbuilds@564 370017ae-e619-0410-ac65-c121f96126d4

backupninja/backupninja.SlackBuild
backupninja/rub

index 498e070917d28c2d6198877b0e1f867203b5ecf9..bfdccf164dc32fa300acc4431683d5efc79b4366 100755 (executable)
@@ -18,7 +18,7 @@ fi
 PACKAGE="backupninja"
 ARCH="noarch"
 VERSION=${VERSION:=0.9.4}
-BUILD=${BUILD:=1rha}
+BUILD=${BUILD:=2rha}
 SRC_DIR=${SRC:=$CWD}
 TMP=${TMP:=/tmp}
 REPOS=${REPOS:=$TMP}
index cdbc9e058c39baf57f27e8a108ec80c96c5a9671..e05b6fd129c99c5b39c12e497397e0567233b840 100644 (file)
@@ -13,7 +13,7 @@
 #   [general]
 #   log = rsync log file
 #   partition = partition where the backup lives
-#   fsck = set to 1 if fsck should run on $partition after the backup is made
+#   fscheck = set to 1 if fsck should run on $partition after the backup is made
 #   read_only = set to 1 if $partition is mounted read-only
 #   mountpoint = backup partition mountpoint or backup main folder
 #   backupdir = folder relative do $mountpoint where the backup should be stored
@@ -40,7 +40,7 @@
 #   initscripts = absolute path where scripts are located
 #   service = script name to be stoped at the begining of the backup and started at its end
 #
-# You can also specify some system comands:
+# You can also specify some system comands if you don't want the default system values:
 #
 #   [system]
 #   rm = rm command
@@ -65,7 +65,7 @@ getconf fsck fsck
 setsection general
 getconf log /var/log/backupninja-rub.log
 getconf partition
-getconf fsck
+getconf fscheck
 getconf read_only
 getconf mountpoint
 getconf backupdir
@@ -319,7 +319,7 @@ fi
 
 # check partition for errors
 
-if [ "$fsck" == "1" ] || [ "$fsck" == "yes" ]; then
+if [ "$fscheck" == "1" ] || [ "$fscheck" == "yes" ]; then
   umount $mountpoint
   if (($?)); then
     warning "Could not umount $mountpoint to run fsck"