projects
/
openwrt
/
svn-archive
/
archive.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Add basic init script for portsentry #2962
[openwrt/svn-archive/archive.git]
/
net
/
portsentry
/
files
/
portsentry.init
1
#!/bin/sh /etc/rc.common
2
# Copyright (C) 2007 OpenWrt.org
3
START
=
99
4
5
start
() {
6
portsentry
-atcp
7
portsentry
-audp
8
}
9
10
stop
() {
11
killall
-9
portsentry
12
}
13