rc.d: remove obsolete /etc/rc.d/keyserv

the keyserv daemon was removed in 9dcb984251.  also remove its rc
script.

Reviewed by:	kevans, adrian, emaste
Approved by:	kevans (mentor)
Fixes: 9dcb984251 ("Remove publickey(5) stuff")
Differential Revision:	https://reviews.freebsd.org/D50135
This commit is contained in:
Lexi Winter
2025-05-03 16:44:03 +01:00
parent 44ec60a429
commit 1271b1d747
3 changed files with 2 additions and 32 deletions
+1
View File
@@ -102,6 +102,7 @@ OLD_FILES+=usr/share/man/man1/keylogin.1.gz
OLD_FILES+=usr/share/man/man1/keylogin.1.gz
OLD_FILES+=usr/share/man/man5/publickey.5.gz
OLD_FILES+=usr/share/man/man8/keyserv.1.gz
OLD_FILES+=etc/rc.d/keyserv
# 20241206: Remove Altera DE4 drivers
OLD_FILES+=usr/share/man/man4/altera_atse.4.gz
+1 -4
View File
@@ -290,13 +290,10 @@ NTPPACKAGE= ntp
_opensm= opensm
.endif
.if ${MK_OPENSSL} != "no"
CONFS+= keyserv
.if ${MK_OPENSSL_KTLS} != "no"
.if ${MK_OPENSSL} != "no" && ${MK_OPENSSL_KTLS} != "no"
CONFS+= tlsclntd \
tlsservd
.endif
.endif
.if ${MK_OPENSSH} != "no"
CONFGROUPS+= SSH
-28
View File
@@ -1,28 +0,0 @@
#!/bin/sh
#
#
# Start keyserv if we are running Secure RPC
# PROVIDE: keyserv
# REQUIRE: ypset
# BEFORE: DAEMON
# KEYWORD: shutdown
. /etc/rc.subr
name="keyserv"
desc="Server for storing private encryption keys"
rcvar="keyserv_enable"
command="/usr/sbin/${name}"
start_precmd="keyserv_prestart"
: ${keyserv_svcj_options:="net_basic"}
keyserv_prestart()
{
force_depend rpcbind || return 1
}
load_rc_config $name
run_rc_command "$1"