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/yppasswdd
#!/bin/sh
#
#

# PROVIDE: yppasswdd
# REQUIRE: ypserv ypset
# BEFORE:  LOGIN
# KEYWORD: shutdown

. /etc/rc.subr

name="yppasswdd"
desc="Server for updating NIS passwords"
rcvar="nis_yppasswdd_enable"

load_rc_config $name

command="/usr/sbin/rpc.${name}"
command_args="${nis_yppasswdd_flags}"

start_precmd="yppasswdd_precmd"

yppasswdd_precmd()
{
	local _domain

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

run_rc_command "$1"

Anon7 - 2021