2006-10-04 20:57:49 +00:00
|
|
|
#!/bin/sh /etc/rc.common
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
2007-05-10 10:38:53 +00:00
|
|
|
START=50
|
2006-08-07 09:10:43 +00:00
|
|
|
|
2007-09-29 18:37:34 +00:00
|
|
|
BIN=peerguardnf
|
|
|
|
CFG_F=/etc/PG.conf
|
|
|
|
OPTIONS="-c $CFG_F -d"
|
2006-08-07 09:10:43 +00:00
|
|
|
|
2006-10-04 20:57:49 +00:00
|
|
|
start() {
|
|
|
|
$BIN $OPTIONS
|
|
|
|
}
|
2006-08-07 09:10:43 +00:00
|
|
|
|