diff options
Diffstat (limited to 'logcheck/mklocalfiles')
-rwxr-xr-x | logcheck/mklocalfiles | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/logcheck/mklocalfiles b/logcheck/mklocalfiles index 3ba8a8a..dc4a152 100755 --- a/logcheck/mklocalfiles +++ b/logcheck/mklocalfiles @@ -6,15 +6,15 @@ for dir in ignore.d.server ignore.d.workstation violations.ignore.d; do echo regenerating $dir rm -f $dir/local - # Include server lines in workstation as well - if [ "$dir" == "ignore.d.workstation" ]; then - for file in ignore.d.server/*; do - if [ -f $file -a `basename $file` != "local" ]; then - echo "### $file" >> $dir/local - cat $file >> $dir/local - fi - done - fi +# # Include server lines in workstation as well +# if [ "$dir" == "ignore.d.workstation" ]; then +# for file in ignore.d.server/*; do +# if [ -f $file -a `basename $file` != "local" ]; then +# echo "### $file" >> $dir/local +# cat $file >> $dir/local +# fi +# done +# fi for file in $dir/*; do if [ -f $file -a `basename $file` != "local" ]; then echo "### $file" >> $dir/local |