mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2025-01-11 17:04:19 +01:00
f99f0ee14e
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
40 lines
603 B
Bash
Executable File
40 lines
603 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
#
|
|
|
|
# PROVIDE: ypset
|
|
# REQUIRE: ypbind
|
|
# KEYWORD: shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="ypset"
|
|
desc="tell ypbind(8) which YP server process to use"
|
|
rcvar="nis_ypset_enable"
|
|
|
|
load_rc_config $name
|
|
|
|
# doesn't make sense to run in a svcj: config setting
|
|
ypset_svcj="NO"
|
|
|
|
command="/usr/sbin/${name}"
|
|
command_args="${nis_ypset_flags}"
|
|
|
|
start_precmd="ypset_precmd"
|
|
|
|
ypset_precmd()
|
|
{
|
|
local _domain
|
|
|
|
force_depend rpcbind || return 1
|
|
force_depend ypbind nis_client || return 1
|
|
|
|
_domain=`domainname`
|
|
if [ -z "$_domain" ]; then
|
|
warn "NIS domainname(1) is not set."
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
run_rc_command "$1"
|