You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
366 B
20 lines
366 B
#!/bin/sh
|
|
# Author: Athmane Madjoudj <athmanem@gmail.com>
|
|
|
|
t_Log "Running $0 - logwatch test."
|
|
|
|
if [ "$CONTAINERTEST" -eq "1" ]; then
|
|
t_Log "Running in container -> SKIP"
|
|
exit 0
|
|
fi
|
|
|
|
if [ "$centos_ver" -ge 7 ] ; then
|
|
lw_options="--range Today"
|
|
else
|
|
lw_options="--range Today --print"
|
|
fi
|
|
|
|
logwatch ${lw_options}| grep -q 'Logwatch End'
|
|
|
|
t_CheckExitStatus $?
|