Deleted Added
full compact
ypset (180564) ypset (231667)
1#!/bin/sh
2#
1#!/bin/sh
2#
3# $FreeBSD: head/etc/rc.d/ypset 180564 2008-07-16 19:50:29Z dougb $
3# $FreeBSD: head/etc/rc.d/ypset 231667 2012-02-14 10:51:24Z dougb $
4#
5
6# PROVIDE: ypset
7# REQUIRE: ypbind
8# KEYWORD: shutdown
9
10. /etc/rc.subr
11
12name="ypset"
13rcvar="nis_ypset_enable"
4#
5
6# PROVIDE: ypset
7# REQUIRE: ypbind
8# KEYWORD: shutdown
9
10. /etc/rc.subr
11
12name="ypset"
13rcvar="nis_ypset_enable"
14command="/usr/sbin/${name}"
15start_precmd="ypset_precmd"
14
16load_rc_config $name
15load_rc_config $name
16
17command="/usr/sbin/${name}"
17command_args="${nis_ypset_flags}"
18
18command_args="${nis_ypset_flags}"
19
20start_precmd="ypset_precmd"
21
19ypset_precmd()
20{
21 local _domain
22
22ypset_precmd()
23{
24 local _domain
25
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_client_enable && \
29 ! /etc/rc.d/ypbind forcestatus 1>/dev/null 2>&1
30 then
31 force_depend ypbind || return 1
32 fi
26 force_depend rpcbind || return 1
27 force_depend ypbind nis_client || return 1
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"
28
29 _domain=`domainname`
30 if [ -z "$_domain" ]; then
31 warn "NIS domainname(1) is not set."
32 return 1
33 fi
34}
35
36run_rc_command "$1"