X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=src%2Fbackupninja.in;h=afb9556cefcba57a5a68c511eb874ae709afb871;hb=539fd1471907422d81626260ea4f1e23e4d398a4;hp=2a1b76ebae4c1d512a6a3f800a92a7e9573cc326;hpb=a1c625fcc3c1bdcc81bb23aee3bea95051d6cc20;p=matthijs%2Fupstream%2Fbackupninja.git diff --git a/src/backupninja.in b/src/backupninja.in index 2a1b76e..afb9556 100755 --- a/src/backupninja.in +++ b/src/backupninja.in @@ -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,17 +200,14 @@ 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() { local when="$1" set -- $when - - [ "$when" == "manual" ] && return 0 - whendayofweek=$1; at=$2; whentime=$3; whenday=`toint "$whendayofweek"` whendayofweek=`tolower "$whendayofweek"` @@ -301,9 +298,9 @@ function process_action() { ret=$? IFS=$'\t\n' if [ $ret == 0 ]; then - debug "skipping $file because current time does not match $w" + debug "skipping $file because it is not $w" else - info ">>>> starting action $file (because current time matches $w)" + info ">>>> starting action $file (because it is $w)" run="yes" fi done @@ -564,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