summaryrefslogtreecommitdiffstats
path: root/etc/rc.d
diff options
context:
space:
mode:
authorandreas <andreas@FreeBSD.org>1998-05-05 21:14:27 +0000
committerandreas <andreas@FreeBSD.org>1998-05-05 21:14:27 +0000
commitb01afb1a08a0246d1f7c3586774b43274bbedcce (patch)
tree84c220d59f3aba122a4b2e5985c81bd2707e55e7 /etc/rc.d
parentd0c92c2cc82ed6eab8c4a9c4902f050dfb81ad67 (diff)
downloadFreeBSD-src-b01afb1a08a0246d1f7c3586774b43274bbedcce.zip
FreeBSD-src-b01afb1a08a0246d1f7c3586774b43274bbedcce.tar.gz
Add variables for the ntpdate and xntpd program, you might want
to run the binaries from the new ntp v4 port.
Diffstat (limited to 'etc/rc.d')
-rw-r--r--etc/rc.d/netoptions6
-rw-r--r--etc/rc.d/network16
-rw-r--r--etc/rc.d/network26
-rw-r--r--etc/rc.d/network36
-rw-r--r--etc/rc.d/routing6
5 files changed, 15 insertions, 15 deletions
diff --git a/etc/rc.d/netoptions b/etc/rc.d/netoptions
index 9e0211f0..214efd2 100644
--- a/etc/rc.d/netoptions
+++ b/etc/rc.d/netoptions
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $Id: rc.network,v 1.22 1998/04/18 10:27:06 brian Exp $
+# $Id: rc.network,v 1.23 1998/04/26 06:32:13 phk Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@@ -160,11 +160,11 @@ network_pass2() {
fi
if [ "X${ntpdate_enable}" = X"YES" ]; then
- echo -n ' ntpdate'; ntpdate ${ntpdate_flags} >/dev/null 2>&1
+ echo -n ' ntpdate'; ${ntpdate_prog} ${ntpdate_flags} >/dev/null 2>&1
fi
if [ "X${xntpd_enable}" = X"YES" ]; then
- echo -n ' xntpd'; xntpd ${xntpd_flags}
+ echo -n ' xntpd'; ${xntpd_prog} ${xntpd_flags}
fi
if [ "X${timed_enable}" = X"YES" ]; then
diff --git a/etc/rc.d/network1 b/etc/rc.d/network1
index 9e0211f0..214efd2 100644
--- a/etc/rc.d/network1
+++ b/etc/rc.d/network1
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $Id: rc.network,v 1.22 1998/04/18 10:27:06 brian Exp $
+# $Id: rc.network,v 1.23 1998/04/26 06:32:13 phk Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@@ -160,11 +160,11 @@ network_pass2() {
fi
if [ "X${ntpdate_enable}" = X"YES" ]; then
- echo -n ' ntpdate'; ntpdate ${ntpdate_flags} >/dev/null 2>&1
+ echo -n ' ntpdate'; ${ntpdate_prog} ${ntpdate_flags} >/dev/null 2>&1
fi
if [ "X${xntpd_enable}" = X"YES" ]; then
- echo -n ' xntpd'; xntpd ${xntpd_flags}
+ echo -n ' xntpd'; ${xntpd_prog} ${xntpd_flags}
fi
if [ "X${timed_enable}" = X"YES" ]; then
diff --git a/etc/rc.d/network2 b/etc/rc.d/network2
index 9e0211f0..214efd2 100644
--- a/etc/rc.d/network2
+++ b/etc/rc.d/network2
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $Id: rc.network,v 1.22 1998/04/18 10:27:06 brian Exp $
+# $Id: rc.network,v 1.23 1998/04/26 06:32:13 phk Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@@ -160,11 +160,11 @@ network_pass2() {
fi
if [ "X${ntpdate_enable}" = X"YES" ]; then
- echo -n ' ntpdate'; ntpdate ${ntpdate_flags} >/dev/null 2>&1
+ echo -n ' ntpdate'; ${ntpdate_prog} ${ntpdate_flags} >/dev/null 2>&1
fi
if [ "X${xntpd_enable}" = X"YES" ]; then
- echo -n ' xntpd'; xntpd ${xntpd_flags}
+ echo -n ' xntpd'; ${xntpd_prog} ${xntpd_flags}
fi
if [ "X${timed_enable}" = X"YES" ]; then
diff --git a/etc/rc.d/network3 b/etc/rc.d/network3
index 9e0211f0..214efd2 100644
--- a/etc/rc.d/network3
+++ b/etc/rc.d/network3
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $Id: rc.network,v 1.22 1998/04/18 10:27:06 brian Exp $
+# $Id: rc.network,v 1.23 1998/04/26 06:32:13 phk Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@@ -160,11 +160,11 @@ network_pass2() {
fi
if [ "X${ntpdate_enable}" = X"YES" ]; then
- echo -n ' ntpdate'; ntpdate ${ntpdate_flags} >/dev/null 2>&1
+ echo -n ' ntpdate'; ${ntpdate_prog} ${ntpdate_flags} >/dev/null 2>&1
fi
if [ "X${xntpd_enable}" = X"YES" ]; then
- echo -n ' xntpd'; xntpd ${xntpd_flags}
+ echo -n ' xntpd'; ${xntpd_prog} ${xntpd_flags}
fi
if [ "X${timed_enable}" = X"YES" ]; then
diff --git a/etc/rc.d/routing b/etc/rc.d/routing
index 9e0211f0..214efd2 100644
--- a/etc/rc.d/routing
+++ b/etc/rc.d/routing
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $Id: rc.network,v 1.22 1998/04/18 10:27:06 brian Exp $
+# $Id: rc.network,v 1.23 1998/04/26 06:32:13 phk Exp $
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@@ -160,11 +160,11 @@ network_pass2() {
fi
if [ "X${ntpdate_enable}" = X"YES" ]; then
- echo -n ' ntpdate'; ntpdate ${ntpdate_flags} >/dev/null 2>&1
+ echo -n ' ntpdate'; ${ntpdate_prog} ${ntpdate_flags} >/dev/null 2>&1
fi
if [ "X${xntpd_enable}" = X"YES" ]; then
- echo -n ' xntpd'; xntpd ${xntpd_flags}
+ echo -n ' xntpd'; ${xntpd_prog} ${xntpd_flags}
fi
if [ "X${timed_enable}" = X"YES" ]; then
OpenPOWER on IntegriCloud