aboutsummaryrefslogtreecommitdiff
path: root/networking/ntpd.c
diff options
context:
space:
mode:
authorAnthony G. Basile <blueness@gentoo.org>2012-12-10 14:49:39 -0500
committerMike Frysinger <vapier@gentoo.org>2012-12-19 15:53:33 -0500
commit12677acf0a0bda4a863279ece65eccda6c36d6b1 (patch)
treec93e3cece76881ebfbc09747fc841db94f2797d5 /networking/ntpd.c
parent393c395ca50d0b95003d5adfc6d1ca95763cc732 (diff)
downloadbusybox-w32-12677acf0a0bda4a863279ece65eccda6c36d6b1.tar.gz
busybox-w32-12677acf0a0bda4a863279ece65eccda6c36d6b1.tar.bz2
busybox-w32-12677acf0a0bda4a863279ece65eccda6c36d6b1.zip
CONFIG_PID_FILE_PATH: new configuration option for pidfile paths
We set a default path for the directory where pidfiles are create when FEATURE_PIDFILE is selected. The default has no effect on applets which must specify a pidfile path on the command line to run, and it can be overridden by applets which optionally allow the user to specify the pidfile path. We also add pidfile write/remove support for klogd, ntpd and watchdog. For syslogd, we add a missing remove_pidfile() for better cleanup on daemon exit. Signed-off-by: Anthony G. Basile <blueness@gentoo.org> Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'networking/ntpd.c')
-rw-r--r--networking/ntpd.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/networking/ntpd.c b/networking/ntpd.c
index 5b92db6f6..7facf9484 100644
--- a/networking/ntpd.c
+++ b/networking/ntpd.c
@@ -2080,6 +2080,8 @@ int ntpd_main(int argc UNUSED_PARAM, char **argv)
2080 */ 2080 */
2081 cnt = G.peer_cnt * (INITIAL_SAMPLES + 1); 2081 cnt = G.peer_cnt * (INITIAL_SAMPLES + 1);
2082 2082
2083 write_pidfile(CONFIG_PID_FILE_PATH "/ntpd.pid");
2084
2083 while (!bb_got_signal) { 2085 while (!bb_got_signal) {
2084 llist_t *item; 2086 llist_t *item;
2085 unsigned i, j; 2087 unsigned i, j;
@@ -2195,6 +2197,7 @@ int ntpd_main(int argc UNUSED_PARAM, char **argv)
2195 } 2197 }
2196 } /* while (!bb_got_signal) */ 2198 } /* while (!bb_got_signal) */
2197 2199
2200 remove_pidfile(CONFIG_PID_FILE_PATH "/ntpd.pid");
2198 kill_myself_with_sig(bb_got_signal); 2201 kill_myself_with_sig(bb_got_signal);
2199} 2202}
2200 2203