HardenedBSD/libexec/rc/rc.d/nscd
Alexander Leidinger f99f0ee14e rc.d: add a service jails config to all base system services
This gives more permissions to services (e.g. network access to
services which require this) when they are started as an automatic
service jail.

The sshd patch is important for the sshd-related functionality as
described in the man-page in the service jails part.

The location of the added env vars is supposed to allow overriding them
in rc.conf, and to hard-disable the use of svcj for some parts where it
doesn't make sense or will not work.

Only a subset of all of the services are fully tested (I'm running this
since more than a year with various services started as service jails).
The untested parts should be most of the time ok, in some edge-cases
more permissions are needed inside the service jail.
Differential Revision:	https://reviews.freebsd.org/D40371
2024-05-22 15:41:49 +02:00

57 lines
1.1 KiB
Bash
Executable File

#!/bin/sh
#
#
# PROVIDE: nscd
# REQUIRE: DAEMON
# BEFORE: LOGIN
# KEYWORD: shutdown
#
# Add the following lines to /etc/rc.conf to enable nscd:
#
# nscd_enable="YES"
#
# See nscd(8) for flags
#
. /etc/rc.subr
name="nscd"
desc="Name-service caching daemon"
rcvar="nscd_enable"
# no svcj options needed
: ${nscd_svcj_options:=""}
command=/usr/sbin/nscd
extra_commands="flush"
flush_cmd="${command} -I all"
# usage: _nscd_set_option <option name> <default value>
#
_nscd_set_option() {
local _optname _defoptval _nscd_opt_val _cached_opt_val
_optname=$1
_defoptval=$2
_nscd_opt_val=$(eval "echo \$nscd_${_optname}")
_cached_opt_val=$(eval "echo \$cached_${_optname}")
if [ -n "$_cached_opt_val" -a "$_nscd_opt_val" != "$_defoptval" ]; then
warn "You should use nscd_${_optname} instead of" \
"cached_${_optname}"
setvar "nscd_${_optname}" "$_cached_opt_val"
else
setvar "nscd_${_optname}" "${_nscd_opt_val:-$_defoptval}"
fi
}
load_rc_config $name
_nscd_set_option "enable" "NO"
_nscd_set_option "pidfile" "/var/run/nscd.pid"
_nscd_set_option "flags" ""
run_rc_command "$1"