9 lines
141 B
Plaintext
9 lines
141 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
if [ -d /run/systemd/system ]; then
|
||
|
|
systemctl kill -s HUP rsyslog.service
|
||
|
|
else
|
||
|
|
invoke-rc.d rsyslog rotate > /dev/null
|
||
|
|
fi
|
||
|
|
|