xref: /freebsd/libexec/rc/rc.d/ypxfrd (revision 06c3fb27)
1#!/bin/sh
2#
3#
4
5# PROVIDE: ypxfrd
6# REQUIRE: rpcbind ypserv
7# KEYWORD: shutdown
8
9. /etc/rc.subr
10
11name="ypxfrd"
12desc="NIS map transfer server"
13rcvar="nis_ypxfrd_enable"
14
15load_rc_config $name
16
17command="/usr/sbin/rpc.${name}"
18command_args="${nis_ypxfrd_flags}"
19
20start_precmd="ypxfrd_precmd"
21
22ypxfrd_precmd()
23{
24	local _domain
25
26	force_depend rpcbind || return 1
27	force_depend ypserv nis_server || return 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"
37