blob: 74170357393e9808f81a7d4c132ab0b70d06d145 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
#!/bin/sh
#
# $FreeBSD$
# PROVIDE: ugidfw
# REQUIRE:
# BEFORE: LOGIN
# KEYWORD: nojail
. /etc/rc.subr
name="ugidfw"
rcvar="ugidfw_enable"
start_cmd="ugidfw_start"
start_precmd="ugidfw_precmd"
stop_cmd="ugidfw_stop"
ugidfw_precmd()
{
if ! sysctl security.mac.bsdextended
then kldload mac_bsdextended
if [ "$?" -ne "0" ]
then warn Unable to load the mac_bsdextended module.
return 1
else
return 0
fi
fi
return 0
}
ugidfw_start()
{
# set the default policy script if none was specified
[ -z "${bsdextended_script}" ] && bsdextended_script=/etc/rc.bsdextended
if [ -r "${bsdextended_script}" ]; then
. "${bsdextended_script}"
echo -n 'MAC bsdextended rules loaded sucessfully.'
fi
echo '.'
}
ugidfw_stop()
{
# Disable the policy
#
kldunload mac_bsdextended
}
load_rc_config $name
run_rc_command "$1"
|