Sets how often to save ZNC config file
This commit is contained in:
parent
5d7d221fd1
commit
d41a223285
|
@ -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
|
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
|
||||||
|
|
Loading…
Reference in New Issue