Deleted Added
sdiff udiff text old ( 180564 ) new ( 231667 )
full compact
1#!/bin/sh
2#
3# $FreeBSD: head/etc/rc.d/ypxfrd 180564 2008-07-16 19:50:29Z dougb $
4#
5
6# PROVIDE: ypxfrd
7# REQUIRE: rpcbind ypserv
8# KEYWORD: shutdown
9
10. /etc/rc.subr
11
12name="ypxfrd"
13rcvar="nis_ypxfrd_enable"
14command="/usr/sbin/rpc.${name}"
15start_precmd="ypxfrd_precmd"
16load_rc_config $name
17command_args="${nis_ypxfrd_flags}"
18
19ypxfrd_precmd()
20{
21 local _domain
22
23 if ! checkyesno rpcbind_enable && \
24 ! /etc/rc.d/rpcbind forcestatus 1>/dev/null 2>&1
25 then
26 force_depend rpcbind || return 1
27 fi
28 if ! checkyesno nis_server_enable && \
29 ! /etc/rc.d/ypserv forcestatus 1>/dev/null 2>&1
30 then
31 force_depend ypserv || return 1
32 fi
33
34 _domain=`domainname`
35 if [ -z "$_domain" ]; then
36 warn "NIS domainname(1) is not set."
37 return 1
38 fi
39}
40
41run_rc_command "$1"