HEX
Server: Apache/2.4.41 (FreeBSD) OpenSSL/1.0.2s mod_fcgid/2.3.9
System: FreeBSD salazo 12.0-RELEASE-p1303-ZFS hostBSD 12.0-RELEASE-p1303-ZFS DMR amd64
User: admin (1000)
PHP: 7.4.3
Disabled: NONE
Upload Files
File: //etc/rc.d/ypbind
#!/bin/sh
#
# $FreeBSD: releng/10.3/etc/rc.d/ypbind 231667 2012-02-14 10:51:24Z dougb $
#

# PROVIDE: ypbind
# REQUIRE: ypserv
# BEFORE:  DAEMON
# KEYWORD: shutdown

. /etc/rc.subr

name="ypbind"
rcvar="nis_client_enable"

load_rc_config $name

command="/usr/sbin/${name}"
command_args="${nis_client_flags}"

start_precmd="ypbind_precmd"

ypbind_precmd()
{
	local _domain

	force_depend rpcbind || return 1

	_domain=`domainname`
	if [ -z "$_domain" ]; then
		warn "NIS domainname(1) is not set."
		return 1
	fi
}

run_rc_command "$1"