diff options
author | 1998-01-16 14:05:45 +0000 | |
---|---|---|
committer | 1998-01-16 14:05:45 +0000 | |
commit | 9cb9129b97ecf9c723f5b37dfe3d151edd9bfe5a (patch) | |
tree | 4b2124e26c9e0b5aae90b5ad0bdcb02717996675 | |
parent | yet another typo (diff) | |
download | wireguard-openbsd-9cb9129b97ecf9c723f5b37dfe3d151edd9bfe5a.tar.xz wireguard-openbsd-9cb9129b97ecf9c723f5b37dfe3d151edd9bfe5a.zip |
New ntp (the one found in ports) is called ntpd, not xntpd
-rw-r--r-- | etc/rc.securelevel | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/etc/rc.securelevel b/etc/rc.securelevel index 957a7240a99..f740e13e97b 100644 --- a/etc/rc.securelevel +++ b/etc/rc.securelevel @@ -1,4 +1,4 @@ -# $OpenBSD: rc.securelevel,v 1.5 1997/11/04 09:15:32 deraadt Exp $ +# $OpenBSD: rc.securelevel,v 1.6 1998/01/16 14:05:45 niklas Exp $ # # site-specific startup actions, daemons, and other things which # can be done BEFORE your system goes into securemode. For actions @@ -29,9 +29,11 @@ echo 'starting pre-securelevel services:' echo -n 'starting pre-securelevel daemons:' -#if [ -x /usr/local/sbin/xntpd ]; then +# Former ntpd versions was called xntpd, change the ntpd references below +# to xntpd if you run such a version. +#if [ -x /usr/local/sbin/ntpd ]; then # /usr/local/sbin/tickadj -Aq -# echo -n ' xntpd'; /usr/local/sbin/xntpd +# echo -n ' ntpd'; /usr/local/sbin/ntpd #fi echo '.' |