mirror of
https://github.com/ThunixdotNet/ansible.git
synced 2026-01-25 05:40:17 +00:00
Sets how often to save ZNC config file
This commit is contained in:
6
roles/shell/files/etc/cron.hourly/znc_saveconfig.sh
Normal file
6
roles/shell/files/etc/cron.hourly/znc_saveconfig.sh
Normal file
@@ -0,0 +1,6 @@
|
||||
#!/bin/dash
|
||||
|
||||
PID=$(pgrep -u znc znc)
|
||||
|
||||
#Rewrite znc.conf
|
||||
[ $PID ] && kill -s USR1 $PID
|
||||
@@ -56,3 +56,11 @@
|
||||
allow spoof_all
|
||||
}
|
||||
}
|
||||
|
||||
- name: Rewrite znc.conf
|
||||
copy:
|
||||
src: ../files/etc/cron.hourly/znc_saveconfig.sh
|
||||
dest: /etc/cron.hourly/znc_saveconfig.sh
|
||||
owner: root
|
||||
group: znc
|
||||
mode: 0754
|
||||
|
||||
Reference in New Issue
Block a user