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
42 lines
667 B
Bash
Executable File
42 lines
667 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
#
|
|
|
|
# PROVIDE: apmd
|
|
# REQUIRE: DAEMON apm
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: nojail shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="apmd"
|
|
desc="Advanced power management daemon"
|
|
rcvar="apmd_enable"
|
|
command="/usr/sbin/${name}"
|
|
start_precmd="apmd_prestart"
|
|
|
|
apmd_prestart()
|
|
{
|
|
case `${SYSCTL_N} hw.machine_arch` in
|
|
i386)
|
|
force_depend apm || return 1
|
|
|
|
# Warn user about acpi apm compatibility support which
|
|
# does not work with apmd.
|
|
if [ ! -e /dev/apmctl ]; then
|
|
warn "/dev/apmctl not found; kernel is missing apm(4)"
|
|
fi
|
|
;;
|
|
*)
|
|
return 1
|
|
;;
|
|
esac
|
|
}
|
|
|
|
load_rc_config $name
|
|
|
|
# doesn't make sense to run in a svcj: nojail keyword
|
|
apmd_svcj="NO"
|
|
|
|
run_rc_command "$1"
|