blob: b41b348845e722ba6f12e76a9f734162e85e84be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/sbin/runscript
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/neti/files/neti-init,v 1.3 2005/04/29 22:47:24 dragonheart Exp $
depend() {
need net
}
start() {
ebegin "Starting netiathome"
start-stop-daemon --start --background --quiet --exec /usr/sbin/NETIStart
eend $?
}
stop() {
ebegin "Stopping netiathome"
start-stop-daemon --stop --quiet --exec /usr/bin/tethereal
eend $?
}
|