mirror of
https://github.com/opnsense/src.git
synced 2026-04-28 09:37:08 -04:00
17 lines
279 B
Bash
Executable file
17 lines
279 B
Bash
Executable file
#!/bin/sh
|
|
#
|
|
#
|
|
|
|
# PROVIDE: sysctl_lastload
|
|
# REQUIRE: LOGIN
|
|
# BEFORE: jail
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="sysctl_lastload"
|
|
desc="Last chance to set sysctl variables that failed the first time."
|
|
start_cmd="/etc/rc.d/sysctl lastload"
|
|
stop_cmd=":"
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|