* preimenovan ntpd u ntp predlozak za Etch
* dodan ntp-server predlozak za Sarge
* u ntp predloske dodana provjera za 127.0.0.1 123/udp portom
+ * vise se ne poziva SystemV monit skripta ako je vec onemogucena
+ * ispravna usporedba sadrzaja predlozaka i restore ako je potrebno
-- Dinko Korunic <kreator@carnet.hr> Tue, 22 Apr 2008 10:30:29 +0200
'^s/startup[[:space:]]*=.*/startup=0/g' /etc/default/monit || true
# systemv part
-echo "CN: Disabling monit SystemV script"
-if [ -x "/etc/init.d/monit" ]; then
- update-rc.d -f monit remove >/dev/null 2>&1
- if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
- invoke-rc.d monit stop || true
- else
- /etc/init.d/monit stop || true
+if ! grep -q 'CARNet package monit-cn' /etc/init.d/monit; then
+ echo "CN: Disabling monit SystemV script"
+ if [ -x "/etc/init.d/monit" ]; then
+ update-rc.d -f monit remove >/dev/null 2>&1
+ if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
+ invoke-rc.d monit stop || true
+ else
+ /etc/init.d/monit stop || true
+ fi
fi
-fi
-if [ -e "/etc/init.d/monit" ]; then
- if ! grep -q 'CARNet package monit-cn' /etc/init.d/monit; then
+ if [ -e "/etc/init.d/monit" ]; then
# shebang
head -n1 /etc/init.d/monit > /etc/init.d/monit.$$
# middle part
# reload init, since we have new configuration
echo "CN: (Re)starting monit service, please check /var/log/daemon.log"
-pkill -9 -f /usr/sbin/monit || true
+pkill -9 -f '/usr/sbin/monit$' || true
kill -HUP 1
# dh_installdeb will replace this with shell code automatically