blob: 8236bdab9910d789beffebe9f5fb5686e351db17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
start() {
start-stop-daemon --start --chuid freenet --exec /opt/freenet/run.sh start
eend 0
}
status() {
start-stop-daemon --start --chuid freenet --exec /opt/freenet/run.sh status
eend 0
}
stop() {
start-stop-daemon --start --chuid freenet --exec /opt/freenet/run.sh stop
eend 0
}
|