When I "/etc/init.d/ntpd stop" one of the two openntpd processes is
still left running. Apparently "killall ntpd" is not sufficient.
So I use the patch below which seems to work.
Stefan
Index: net/openntpd/files/ntpd.init
===================================================================
--- net/openntpd/files/ntpd.init (révision 19649)
+++ net/openntpd/files/ntpd.init (copie de travail)
@@ -14,5 +14,6 @@
}
stop() {
- killall ntpd
+ # -1 seems insufficient to kill one of the two underlying processes.
+ killall -9 ntpd
}
_______________________________________________
openwrt-devel mailing list
[email protected]
https://lists.openwrt.org/mailman/listinfo/openwrt-devel