mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-22 16:38:54 +00:00
11 lines
179 B
Bash
11 lines
179 B
Bash
#!/bin/sh
|
|
|
|
logrotate -f /etc/logrotate.conf > /dev/null 2>&1
|
|
|
|
pkill -HUP rsyslogd
|
|
|
|
fail2ban-client flushlogs
|
|
|
|
if [ -f /tmp/nginx.pid ] ; then
|
|
/usr/sbin/nginx -s reload
|
|
fi
|