diff options
author | intrigeri <intrigeri@boum.org> | 2008-12-09 11:08:53 +0000 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2008-12-09 11:08:53 +0000 |
commit | 4506202ea78d5c5829113d6f2a183c540585cd5d (patch) | |
tree | 6401d5716cb9916f9f93ca681e7764e28fd7b0a8 | |
parent | ea9814ad2b78a7603d2b6f1b2916dc895aab9bd5 (diff) | |
download | backupninja-4506202ea78d5c5829113d6f2a183c540585cd5d.tar.gz backupninja-4506202ea78d5c5829113d6f2a183c540585cd5d.tar.bz2 |
backupninja: do not assume English locale when using date (Closes: #465837)
-rw-r--r-- | ChangeLog | 1 | ||||
-rwxr-xr-x | src/backupninja.in | 8 |
2 files changed, 5 insertions, 4 deletions
@@ -1,6 +1,7 @@ version 0.9.7 -- UNRELEASED backupninja changes . fix bug in reportspace, thanks Dan Garthwaite + . do not assume English locale when using date (Closes: #465837) handler changes maildir: . fix location of deleted_on file diff --git a/src/backupninja.in b/src/backupninja.in index 25f4e11..6dee3b6 100755 --- a/src/backupninja.in +++ b/src/backupninja.in @@ -98,7 +98,7 @@ function printmsg() { function logmsg() { if [ -w "$logfile" ]; then - echo -e `date "+%h %d %H:%M:%S"` "$@" >> $logfile + echo -e `LC_ALL=C date "+%h %d %H:%M:%S"` "$@" >> $logfile fi } @@ -200,9 +200,9 @@ function toint() { # we grab the current time once, since processing # all the configs might take more than an hour. -nowtime=`date +%H` -nowday=`date +%d` -nowdayofweek=`date +%A` +nowtime=`LC_ALL=C date +%H` +nowday=`LC_ALL=C date +%d` +nowdayofweek=`LC_ALL=C date +%A` nowdayofweek=`tolower "$nowdayofweek"` function isnow() { |