summaryrefslogtreecommitdiff
blob: 138bf53d2218ed17c57649740555c08cfa09608e (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 /bin/sh /opt/freenet/run.sh start 2>/dev/null
	eend 0
}

status() {
	start-stop-daemon --start --chuid freenet --exec /bin/sh /opt/freenet/run.sh status 2>/dev/null
	eend 0
}

stop() {
	start-stop-daemon --start --chuid freenet --exec /bin/sh /opt/freenet/run.sh stop 2>/dev/null
	eend 0
}