freebsd-src/libexec/rc/rc.d/bgfsck
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

54 lines
998 B
Bash
Executable file

#!/bin/sh
#
#
# PROVIDE: bgfsck
# REQUIRE: cron devfs syslogd
# KEYWORD: nojail
. /etc/rc.subr
name="background_fsck"
desc="Run fsck in background"
rcvar="background_fsck"
start_cmd="bgfsck_start"
start_precmd="bgfsck_start_precmd"
stop_cmd=":"
bgfsck_start_precmd()
{
if [ $($ID -u) != 0 ]; then
err 1 "Must be root."
fi
}
bgfsck_start()
{
: ${background_fsck_delay=0}
if [ -n "${rc_force}" ]; then
background_fsck_delay=0
fi
if [ ${background_fsck_delay} -lt 0 ]; then
warn "Background file system checks delayed indefinitely"
return 0
fi
bgfsck_msg='Starting background file system checks'
if [ "${background_fsck_delay}" -gt 0 ]; then
bgfsck_msg="${bgfsck_msg} in ${background_fsck_delay} seconds"
fi
if [ -z "${rc_force}" ]; then
startmsg "${bgfsck_msg}."
fi
(sleep ${background_fsck_delay}; nice -4 fsck -B -p) 2>&1 | \
logger -p daemon.notice -t fsck &
}
load_rc_config $name
# doesn't make sense to run in a svcj
bgfsck_svcj="NO"
run_rc_command "$1"