mirror of
https://github.com/opnsense/src.git
synced 2026-06-05 14:54:21 -04:00
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
32 lines
608 B
Bash
Executable file
32 lines
608 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
#
|
|
|
|
# PROVIDE: nfsuserd
|
|
# REQUIRE: NETWORKING
|
|
# KEYWORD: nojailvnet shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="nfsuserd"
|
|
desc="Load user and group information into the kernel for NFSv4 services and support manage-gids for all NFS versions"
|
|
rcvar="nfsuserd_enable"
|
|
command="/usr/sbin/${name}"
|
|
sig_stop="USR1"
|
|
|
|
: ${nfsuserd_svcj_options:="net_basic nfsd"}
|
|
|
|
load_rc_config $name
|
|
# precmd is not compatible with svcj
|
|
nfsuserd_svcj="NO"
|
|
start_precmd="nfsuserd_precmd"
|
|
|
|
nfsuserd_precmd()
|
|
{
|
|
if checkyesno nfs_server_managegids; then
|
|
rc_flags="-manage-gids ${nfsuserd_flags}"
|
|
fi
|
|
return 0
|
|
}
|
|
|
|
run_rc_command "$1"
|