diff options
Diffstat (limited to 'network/monkey/monkey.logrotate')
-rw-r--r-- | network/monkey/monkey.logrotate | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/network/monkey/monkey.logrotate b/network/monkey/monkey.logrotate index 5d1cde3540..77e606aa75 100644 --- a/network/monkey/monkey.logrotate +++ b/network/monkey/monkey.logrotate @@ -8,6 +8,10 @@ postrotate # kill -HUP `cat /var/run/monkey/monkey.pid.*` # Handling of SIGHUP is not implemented yet, but they promise make it like apache httpd - /etc/rc.d/rc.monkey restart + PATH=/usr/sbin:/sbin:/usr/bin:/bin + pgrep -u apache -x monkey 1>/dev/null 2>/dev/null + if [ $? != '0' ]; then + /etc/rc.d/rc.monkey restart + fi endscript } |