opnsense-src/libexec/rc/rc.d/sysctl
Warner Losh d0b2dbfa0e Remove $FreeBSD$: one-line sh pattern
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
2023-08-16 11:55:03 -06:00

37 lines
580 B
Bash
Executable file

#!/bin/sh
#
#
# 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"