mirror of
https://github.com/ThunixdotNet/ansible.git
synced 2026-03-21 19:40:18 +00:00
7 lines
86 B
Bash
7 lines
86 B
Bash
#!/bin/dash
|
|
|
|
PID=$(pgrep -u znc znc)
|
|
|
|
#Rewrite znc.conf
|
|
[ $PID ] && kill -s USR1 $PID
|