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
33 lines
607 B
Bash
Executable file
33 lines
607 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
# FreeBSD History: src/etc/rc.d/nfslocking,v 1.11 2004/10/07 13:55:26 mtm Exp
|
|
#
|
|
|
|
# PROVIDE: statd
|
|
# REQUIRE: nfsclient rpcbind
|
|
# BEFORE: DAEMON
|
|
# KEYWORD: nojail shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="statd"
|
|
desc="host status monitoring daemon"
|
|
rcvar=rpc_statd_enable
|
|
command="/usr/sbin/rpc.${name}"
|
|
start_precmd='statd_precmd'
|
|
|
|
: ${statd_svcj_options:="net_basic"}
|
|
|
|
# Make sure that we are either an NFS client or server, and that we get
|
|
# the correct flags from rc.conf(5).
|
|
#
|
|
statd_precmd()
|
|
{
|
|
force_depend rpcbind || return 1
|
|
}
|
|
|
|
load_rc_config $name
|
|
|
|
rc_flags=${rpc_statd_flags}
|
|
|
|
run_rc_command $1
|