diff options
Diffstat (limited to 'main/sysklogd/sysklogd.daily')
-rwxr-xr-x | main/sysklogd/sysklogd.daily | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/main/sysklogd/sysklogd.daily b/main/sysklogd/sysklogd.daily index 79e85fb468..ccd63d61e4 100755 --- a/main/sysklogd/sysklogd.daily +++ b/main/sysklogd/sysklogd.daily @@ -17,13 +17,14 @@ syslogd_listfiles() { # the sed (in order)- # strips comments; # collapses spaces/tabs to 1 space; - # deletes the "-" in front of the filename; + # deletes the "-" in front of the filename; + # deletes whitespace before ';' # deletes lines that have the "skip" facility # deletes the facility (leaving just the filename) # deletes lines that are not filenames with leading "/" while read a ; do echo "$a"; done < $CONF |\ - sed -n "/^ *#/D; /^[ ]*$/D; s/[ ]\+/ /g; \ - s+ -/+ /+g; /^.*\($skip\)[^ ]* /D; \ + sed -n "/^[ \t]*#/D; /^[ \t]*$/D; s/[ \t]\+/ /g; \ + s+ -/+ /+g; s/ *; */;/; /^.*\($skip\)[^ ]* /D; \ s/^[^ ]* //; /^[^\\/]/D; P" |\ sort | uniq } |