2157c962c5
git-svn-id: svn://svn.openwrt.org/openwrt/packages@10734 3c298f89-4303-0410-b956-a3cf2f4a3e73
13 lines
155 B
Bash
13 lines
155 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
START=50
|
|
|
|
BIN=peerguardnf
|
|
CFG_F=/etc/PG.conf
|
|
OPTIONS="-c $CFG_F -d"
|
|
|
|
start() {
|
|
$BIN $OPTIONS
|
|
}
|
|
|