diff options
author | Joerg Jaspert <joerg@debian.org> | 2008-09-27 16:50:17 +0200 |
---|---|---|
committer | Joerg Jaspert <joerg@debian.org> | 2008-09-27 16:50:17 +0200 |
commit | 6276ad90b6466031941484d40f88a76618e8db61 (patch) | |
tree | dd39be62f9015ee492f23f096b9aa45047d4d112 | |
parent | 089f3fa85ae2d128b5e5b190ee6c99d0b9ca499a (diff) |
logdir
fix logdir variable setting
Signed-off-by: Joerg Jaspert <joerg@debian.org>
-rwxr-xr-x | bin/ftpsync | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/ftpsync b/bin/ftpsync index b8c1ce6..de2cb47 100755 --- a/bin/ftpsync +++ b/bin/ftpsync @@ -48,7 +48,7 @@ NAME="`basename $0`" # There should be nothing to edit here, use the config file # ######################################################################## HOSTNAME=${HOSTNAME:-`hostname -f`} -LOGDIR=${LOG:-"${HOME}/log"} +LOGDIR=${LOGDIR:-"${HOME}/log"} LOG=${LOG:-"${LOGDIR}/$0.log"} TO="/org/ftp.debian.org/ftp/" |