Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
4 |
- |
1 |
#!/bin/bash
|
|
|
2 |
|
|
|
3 |
DailyReport=`grep -e "^[[:space:]]*DailyReport[[:space:]]*=[[:space:]]*" /usr/share/logwatch/default.conf/logwatch.conf | head -n1 | sed -e "s|^\s*DailyReport\s*=\s*||"`
|
|
|
4 |
|
|
|
5 |
if [ "$DailyReport" != "No" ] && [ "$DailyReport" != "no" ]
|
|
|
6 |
then
|
|
|
7 |
logwatch
|
|
|
8 |
fi
|