You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
300 B
18 lines
300 B
8 years ago
|
#!/sbin/openrc-run
|
||
|
|
||
|
name="f2b"
|
||
|
command="/usr/sbin/f2b"
|
||
|
command_args="-d"
|
||
|
description="lightweight blocker of network attacks"
|
||
|
pidfile="/var/run/f2b.pid"
|
||
|
|
||
|
required_dirs="/var/run"
|
||
|
required_files="/etc/f2b/f2b.conf"
|
||
|
|
||
|
depend() {
|
||
|
need mountall
|
||
|
use net
|
||
|
after bootmisc
|
||
|
config "/etc/f2b/f2b.conf"
|
||
|
}
|