04f0f225dd
to allow them to do a "clean" shutdown. I purposely avoided making changes to network-related stuff since the system shutting down is pretty conclusive, and there may be complicated dependencies on the network that I would rather not try to unravel. I also skipped kerberos-related stuff for the reasons above, and because I have no way to test it.
43 lines
620 B
Bash
Executable File
43 lines
620 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
|
|
# PROVIDE: ugidfw
|
|
# BEFORE: LOGIN
|
|
# KEYWORD: nojail shutdown
|
|
|
|
. /etc/rc.subr
|
|
|
|
name="ugidfw"
|
|
rcvar="ugidfw_enable"
|
|
start_cmd="ugidfw_start"
|
|
stop_cmd="ugidfw_stop"
|
|
required_modules="mac_bsdextended"
|
|
|
|
ugidfw_load()
|
|
{
|
|
if [ -r "${bsdextended_script}" ]; then
|
|
. "${bsdextended_script}"
|
|
fi
|
|
}
|
|
|
|
ugidfw_start()
|
|
{
|
|
[ -z "${bsdextended_script}" ] && bsdextended_script=/etc/rc.bsdextended
|
|
|
|
if [ -r "${bsdextended_script}" ]; then
|
|
ugidfw_load
|
|
echo "MAC bsdextended rules loaded."
|
|
fi
|
|
}
|
|
|
|
ugidfw_stop()
|
|
{
|
|
# Disable the policy
|
|
#
|
|
kldunload mac_bsdextended
|
|
}
|
|
|
|
load_rc_config $name
|
|
run_rc_command "$1"
|