1#!/bin/sh
2#
3#
4
5# PROVIDE: sysctl_lastload
6# REQUIRE: LOGIN
7# BEFORE:  jail
8
9. /etc/rc.subr
10
11name="sysctl_lastload"
12desc="Last chance to set sysctl variables that failed the first time."
13start_cmd="/etc/rc.d/sysctl lastload"
14stop_cmd=":"
15
16load_rc_config $name
17
18# doesn't make sense to run in a svcj: config setting
19sysctl_lastload_svcj="NO"
20
21run_rc_command "$1"
22