|
|
@ -1,4 +1,4 @@ |
|
|
|
From cb6da547c5b532d6e8d241cb993c831605d0d45f Mon Sep 17 00:00:00 2001 |
|
|
|
From 4eaf878371b6a3bcba24fcf6ece12a6170d7d983 Mon Sep 17 00:00:00 2001 |
|
|
|
From: Brent Cook <busterb@gmail.com> |
|
|
|
Date: Wed, 31 Dec 2014 08:26:41 -0600 |
|
|
|
Subject: [PATCH 07/12] add -p option to create a pid file |
|
|
@ -8,9 +8,9 @@ This is used in both the Gentoo and Debian ports. |
|
|
|
Origin: https://bugs.gentoo.org/show_bug.cgi?id=493082 |
|
|
|
---
|
|
|
|
src/usr.sbin/ntpd/ntpd.8 | 4 ++++ |
|
|
|
src/usr.sbin/ntpd/ntpd.c | 35 +++++++++++++++++++++++++++++++---- |
|
|
|
src/usr.sbin/ntpd/ntpd.c | 33 ++++++++++++++++++++++++++++----- |
|
|
|
src/usr.sbin/ntpd/ntpd.h | 1 + |
|
|
|
3 files changed, 36 insertions(+), 4 deletions(-) |
|
|
|
3 files changed, 33 insertions(+), 5 deletions(-) |
|
|
|
|
|
|
|
diff --git a/src/usr.sbin/ntpd/ntpd.8 b/src/usr.sbin/ntpd/ntpd.8
|
|
|
|
index dcfb6d2..1b885a1 100644
|
|
|
@ -35,7 +35,7 @@ index dcfb6d2..1b885a1 100644 |
|
|
|
Do not set the time immediately at startup. |
|
|
|
This is the default. |
|
|
|
diff --git a/src/usr.sbin/ntpd/ntpd.c b/src/usr.sbin/ntpd/ntpd.c
|
|
|
|
index b6eb98e..608e6fd 100644
|
|
|
|
index b6eb98e..8dbd51e 100644
|
|
|
|
--- a/src/usr.sbin/ntpd/ntpd.c
|
|
|
|
+++ b/src/usr.sbin/ntpd/ntpd.c
|
|
|
|
@@ -87,6 +87,18 @@ sighdlr(int sig)
|
|
|
@ -85,16 +85,12 @@ index b6eb98e..608e6fd 100644 |
|
|
|
case 's': |
|
|
|
lconf.settime = 1; |
|
|
|
break; |
|
|
|
@@ -191,10 +206,16 @@ main(int argc, char *argv[])
|
|
|
|
reset_adjtime(); |
|
|
|
@@ -192,9 +207,11 @@ main(int argc, char *argv[])
|
|
|
|
if (!lconf.settime) { |
|
|
|
log_init(lconf.debug, LOG_DAEMON); |
|
|
|
+<<<<<<< 00fff5a8c36c3b3574abf8bd4bb1a558d1f8232d
|
|
|
|
log_verbose(lconf.verbose); |
|
|
|
if (!lconf.debug) |
|
|
|
+=======
|
|
|
|
- if (!lconf.debug)
|
|
|
|
+ if (!lconf.debug) {
|
|
|
|
+>>>>>>> add -p option to create a pid file
|
|
|
|
if (daemon(1, 0)) |
|
|
|
fatal("daemon"); |
|
|
|
+ writepid(&lconf);
|
|
|
@ -102,7 +98,7 @@ index b6eb98e..608e6fd 100644 |
|
|
|
} else |
|
|
|
timeout = SETTIME_TIMEOUT * 1000; |
|
|
|
|
|
|
|
@@ -273,9 +294,11 @@ main(int argc, char *argv[])
|
|
|
|
@@ -273,9 +290,11 @@ main(int argc, char *argv[])
|
|
|
|
log_verbose(lconf.verbose); |
|
|
|
log_warnx("no reply received in time, skipping initial " |
|
|
|
"time setting"); |
|
|
@ -115,7 +111,7 @@ index b6eb98e..608e6fd 100644 |
|
|
|
} |
|
|
|
|
|
|
|
if (nfds > 0 && (pfd[PFD_PIPE].revents & POLLOUT)) |
|
|
|
@@ -318,6 +341,8 @@ main(int argc, char *argv[])
|
|
|
|
@@ -318,6 +337,8 @@ main(int argc, char *argv[])
|
|
|
|
msgbuf_clear(&ibuf->w); |
|
|
|
free(ibuf); |
|
|
|
log_info("Terminating"); |
|
|
@ -124,7 +120,7 @@ index b6eb98e..608e6fd 100644 |
|
|
|
return (0); |
|
|
|
} |
|
|
|
|
|
|
|
@@ -401,9 +426,11 @@ dispatch_imsg(struct ntpd_conf *lconf, const char *pw_dir,
|
|
|
|
@@ -401,9 +422,11 @@ dispatch_imsg(struct ntpd_conf *lconf, const char *pw_dir,
|
|
|
|
memcpy(&d, imsg.data, sizeof(d)); |
|
|
|
ntpd_settime(d); |
|
|
|
/* daemonize now */ |
|
|
|