12 lines
313 B
Bash
Executable File
12 lines
313 B
Bash
Executable File
#!/bin/sh
|
|
# THIS FILE IS AUTOMATICALLY DISTRIBUTED BY PUPPET. ANY CHANGES WILL BE
|
|
# OVERWRITTEN.
|
|
|
|
OUTPUT=$(/usr/sbin/logrotate /etc/logrotate.conf 2>&1)
|
|
EXITVALUE=$?
|
|
if [ $EXITVALUE != 0 ]; then
|
|
/usr/bin/logger -t logrotate "ALERT exited abnormally with [$EXITVALUE]"
|
|
echo "${OUTPUT}"
|
|
fi
|
|
exit $EXITVALUE
|