move the branches directories up to the root of the repository
[matthijs/upstream/backupninja.git] / src / backupninja.in
index 6dee3b6163c4920a06e34f95c0e3ebe831277272..afb9556cefcba57a5a68c511eb874ae709afb871 100755 (executable)
@@ -98,7 +98,7 @@ function printmsg() {
 
 function logmsg() {
        if [ -w "$logfile" ]; then
-               echo -e `LC_ALL=C date "+%h %d %H:%M:%S"` "$@" >> $logfile
+               echo -e `date "+%h %d %H:%M:%S"` "$@" >> $logfile
        fi
 }
 
@@ -185,7 +185,7 @@ function tolower() {
 
 # simple to integer function
 function toint() {
-       echo "$1" | tr -d '[:alpha:]'
+       echo "$1" | tr -d '[:alpha:]' 
 }
 
 #
@@ -200,9 +200,9 @@ function toint() {
 
 # we grab the current time once, since processing
 # all the configs might take more than an hour.
-nowtime=`LC_ALL=C date +%H`
-nowday=`LC_ALL=C date +%d`
-nowdayofweek=`LC_ALL=C date +%A`
+nowtime=`date +%H`
+nowday=`date +%d`
+nowdayofweek=`date +%A`
 nowdayofweek=`tolower "$nowdayofweek"`
 
 function isnow() {
@@ -561,7 +561,7 @@ if [ $doit == 1 ]; then
                        previous=""
                        for i in $(ls "$configdirectory"); do
                        backuploc=$(grep ^directory "$configdirectory"/"$i" | @AWK@ '{print $3}')
-                       if [ "$backuploc" != "$previous" -a -n "$backuploc" ]; then
+                        if [ "$backuploc" != "$previous" -a -n "$backuploc" ]; then
                                df -h "$backuploc"
                                previous="$backuploc"
                        fi