aboutsummaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorLexi Winter <ivy@FreeBSD.org>2025-08-10 12:57:36 +0000
committerLexi Winter <ivy@FreeBSD.org>2025-08-10 15:36:40 +0000
commit7ac276298b72982189ac1a5b17461936dc00163e (patch)
tree5df125e7e518e5ee6f5a40e170cca313330e5de1 /libexec
parent992d2f928452519877c7d4377d8e5ae124d68dba (diff)
Diffstat (limited to 'libexec')
-rw-r--r--libexec/rc/rc.conf1
-rw-r--r--libexec/rc/rc.d/Makefile1
-rwxr-xr-xlibexec/rc/rc.d/ypupdated35
3 files changed, 0 insertions, 37 deletions
diff --git a/libexec/rc/rc.conf b/libexec/rc/rc.conf
index bfa46bd343a6..07cb9803882c 100644
--- a/libexec/rc/rc.conf
+++ b/libexec/rc/rc.conf
@@ -396,7 +396,6 @@ rpc_statd_flags="" # Flags to rpc.statd (if enabled).
rpcbind_enable="NO" # Run the portmapper service (YES/NO).
rpcbind_program="/usr/sbin/rpcbind" # path to rpcbind, if you want a different one.
rpcbind_flags="" # Flags to rpcbind (if enabled).
-rpc_ypupdated_enable="NO" # Run if NIS master and SecureRPC (or NO).
nfsv4_server_enable="NO" # Enable support for NFSv4
nfsv4_server_only="NO" # Set NFS server to NFSv4 only
nfscbd_enable="NO" # NFSv4 client side callback daemon
diff --git a/libexec/rc/rc.d/Makefile b/libexec/rc/rc.d/Makefile
index d0c6fc1dee46..680b140865df 100644
--- a/libexec/rc/rc.d/Makefile
+++ b/libexec/rc/rc.d/Makefile
@@ -318,7 +318,6 @@ YP= ypbind \
yppasswdd \
ypserv \
ypset \
- ypupdated \
ypxfrd \
nisdomain
YPPACKAGE= yp
diff --git a/libexec/rc/rc.d/ypupdated b/libexec/rc/rc.d/ypupdated
deleted file mode 100755
index 1a4c595c745a..000000000000
--- a/libexec/rc/rc.d/ypupdated
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/bin/sh
-#
-#
-
-# PROVIDE: ypupdated
-# REQUIRE: rpcbind ypserv
-# KEYWORD: shutdown
-
-. /etc/rc.subr
-
-name="ypupdated"
-rcvar="rpc_ypupdated_enable"
-
-: ${ypupdated_svcj_options:="net_basic"}
-
-load_rc_config $name
-
-command="/usr/sbin/rpc.${name}"
-start_precmd="rpc_ypupdated_precmd"
-
-rpc_ypupdated_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"