summaryrefslogtreecommitdiffstats
path: root/etc/rc.d/ypxfrd
diff options
context:
space:
mode:
authorgordon <gordon@FreeBSD.org>2002-08-14 05:44:32 +0000
committergordon <gordon@FreeBSD.org>2002-08-14 05:44:32 +0000
commit008b9b25ad2ce5dc5898051a4b7473c537da8d1b (patch)
tree74908b5b57031bedcbdeb25a3f0895ecc0a0e4b5 /etc/rc.d/ypxfrd
parent2f904c0a96257516a43311cdac6551876ee3c559 (diff)
downloadFreeBSD-src-008b9b25ad2ce5dc5898051a4b7473c537da8d1b.zip
FreeBSD-src-008b9b25ad2ce5dc5898051a4b7473c537da8d1b.tar.gz
Clean up the scripts to use the new variables:
xntpd_* -> ntpd_* portmap_* -> rpcbind_* Also change single_mountd_enable -> mountd_enable Changing the mountd flags brings us closer to NetBSD. All of the old variable names are shimmed so you can continue to use the old variable name. Finally make /etc/rc.d/mountd no longer dependent on nfs as there are (apparently) other consumers of mountd. Submitted by: Mike Makonnen <makonnen@pacbell.net>
Diffstat (limited to 'etc/rc.d/ypxfrd')
-rw-r--r--etc/rc.d/ypxfrd12
1 files changed, 11 insertions, 1 deletions
diff --git a/etc/rc.d/ypxfrd b/etc/rc.d/ypxfrd
index 9b32532..cf873fb 100644
--- a/etc/rc.d/ypxfrd
+++ b/etc/rc.d/ypxfrd
@@ -13,11 +13,21 @@ name="ypxfrd"
rcvar="nis_ypxfrd_enable"
command="/usr/sbin/rpc.${name}"
command_args="${nis_ypxfrd_flags}"
-required_vars="portmap_enable nis_server_enable"
start_precmd="ypxfrd_precmd"
ypxfrd_precmd()
{
+ if ! checkyesno rpcbind_enable && \
+ ! /etc/rc.d/rpcbind forcestatus 1>/dev/null 2>&1
+ then
+ force_depend rpcbind || return 1
+ fi
+ if ! checkyesno nis_server_enable && \
+ ! /etc/rc.d/ypserv forcestatus 1>/dev/null 2>&1
+ then
+ force_depend ypserv || return 1
+ fi
+
_domain=`domainname`
if [ -z "$_domain" ]; then
warn "domainname(1) is not set."
OpenPOWER on IntegriCloud