Module Name: src
Committed By: he
Date: Sun Dec 28 17:03:16 UTC 2014
Modified Files:
src/etc/rc.d [netbsd-6]: ntpd
Log Message:
The new ntpd wants to translate ntp into a port number after chroot,
so give it its own small copy of /etc/services in the chroot.
[mlelstv, ticket 1223]
To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.13.52.1 src/etc/rc.d/ntpd
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/etc/rc.d/ntpd
diff -u src/etc/rc.d/ntpd:1.13 src/etc/rc.d/ntpd:1.13.52.1
--- src/etc/rc.d/ntpd:1.13 Fri Aug 13 18:08:03 2004
+++ src/etc/rc.d/ntpd Sun Dec 28 17:03:16 2014
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $NetBSD: ntpd,v 1.13 2004/08/13 18:08:03 mycroft Exp $
+# $NetBSD: ntpd,v 1.13.52.1 2014/12/28 17:03:16 he Exp $
#
# PROVIDE: ntpd
@@ -49,6 +49,21 @@ ntpd_precmd()
fi
ln -fs "${ntpd_chrootdir}/var/db/ntp.drift" /var/db/ntp.drift
+ if [ ! -d "${ntpd_chrootdir}/etc" ]; then
+ mkdir "${ntpd_chrootdir}/etc"
+ fi
+ if [ ! -f "${ntpd_chrootdir}/etc/services" ]; then
+ getent services ntp/udp ntp/tcp \
+ > "${ntpd_chrootdir}/etc/services"
+ fi
+ if [ ! -d "${ntpd_chrootdir}/var/db" ]; then
+ mkdir -p "${ntpd_chrootdir}/var/db"
+ fi
+ if [ ! -f "${ntpd_chrootdir}/var/db/services.cdb" ]; then
+ services_mkdb -o "${ntpd_chrootdir}/var/db/services.cdb" \
+ "${ntpd_chrootdir}/etc/services"
+ fi
+
# Change run_rc_commands()'s internal copy of $ntpd_flags
#
rc_flags="-u ntpd:ntpd -i ${ntpd_chrootdir} $rc_flags"