freebsd-dev/etc/rc.d/sysctl
Lars Engels 6c1a5e837d - Add descriptions to most of the rc scripts. Those are mostly taken from their
daemon's manpage and probably improved.
- Consistently use "filesystem" not "file system".

Approved by:	bapt, brueffer
Differential Revision:	D452
2016-04-23 16:10:54 +00:00

39 lines
592 B
Bash
Executable File

#!/bin/sh
#
# $FreeBSD$
#
# PROVIDE: sysctl
. /etc/rc.subr
name="sysctl"
desc="Set sysctl variables from /etc/sysctl.conf and /etc/sysctl.conf.local"
command="/sbin/sysctl"
stop_cmd=":"
start_cmd="sysctl_start"
reload_cmd="sysctl_start last"
lastload_cmd="sysctl_start last"
extra_commands="reload lastload"
sysctl_start()
{
case $1 in
last)
command_args="-f"
;;
*)
command_args="-i -f"
;;
esac
for _f in /etc/sysctl.conf /etc/sysctl.conf.local; do
if [ -r ${_f} ]; then
${command} ${command_args} ${_f} > /dev/null
fi
done
}
load_rc_config $name
run_rc_command "$1"