diff options
author | Erich Eckner <git@eckner.net> | 2016-05-10 06:54:39 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2016-05-10 06:54:39 +0200 |
commit | c1fe09452707f1bb560062e634d4f02d6cf96089 (patch) | |
tree | 1a354d8b138be9a1b90994e7b114da3e0056f9b3 | |
parent | 7b1ee110a12e983eb5b7a68017a4bc0d493ba8dd (diff) | |
download | logwatch-extra-c1fe09452707f1bb560062e634d4f02d6cf96089.tar.xz |
backup.conf nur auf "r" testen statt auf "x"
-rwxr-xr-x | doalogwatch.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doalogwatch.in b/doalogwatch.in index c479cbf..ad1d931 100755 --- a/doalogwatch.in +++ b/doalogwatch.in @@ -14,7 +14,7 @@ touch ${warteAufFile} || exit 1 # check for currently running backups ps aux | grep -v "\sgrep\s" | grep -q "\s\(#BINDIR#/\)\?backup\s" && exit 11 -if [ -x #ETCDIR#/backup.conf ] +if [ -r #ETCDIR#/backup.conf ] then . #ETCDIR#/backup.conf for i in 1 2 |