summaryrefslogtreecommitdiffstats
path: root/etc/network.subr
diff options
context:
space:
mode:
authormarkm <markm@FreeBSD.org>1998-04-12 09:47:43 +0000
committermarkm <markm@FreeBSD.org>1998-04-12 09:47:43 +0000
commit88d6397093719b76d8cd2759aa139cb805f9445f (patch)
treea3fe1c2edb3947f1e3b4afd054c6a2faf672a2c0 /etc/network.subr
parent85cba41907b6dcf0d79925fa3f0013afdac2d702 (diff)
downloadFreeBSD-src-88d6397093719b76d8cd2759aa139cb805f9445f.zip
FreeBSD-src-88d6397093719b76d8cd2759aa139cb805f9445f.tar.gz
Enable the SecureRPC bits in rc.conf, if the Administrator wants them.
Diffstat (limited to 'etc/network.subr')
-rw-r--r--etc/network.subr11
1 files changed, 10 insertions, 1 deletions
diff --git a/etc/network.subr b/etc/network.subr
index 2fbdf4f..1e49f77 100644
--- a/etc/network.subr
+++ b/etc/network.subr
@@ -1,6 +1,6 @@
#!/bin/sh -
#
-# $Id: rc.network,v 1.19 1998/02/20 14:45:06 brian Exp $
+# $Id$
# From: @(#)netstart 5.9 (Berkeley) 3/30/91
# Note that almost all the user-configurable behavior is no longer in
@@ -197,6 +197,15 @@ network_pass2() {
fi
fi
+ # Start keyserv if we are running Secure RPC
+ if [ "X${keyserv_enable}" = X"YES" ]; then
+ echo -n ' keyserv'; keyserv ${keyserv_flags}
+ fi
+ # Start ypupdated if we are running Secure RPC and we are NIS master
+ if [ "X$rpc_ypupdated_enable" = X"YES" ]; then
+ echo -n ' rpc.ypupdated'; rpc.ypupdated
+ fi
+
echo '.'
network_pass2_done=YES
}
OpenPOWER on IntegriCloud