summaryrefslogtreecommitdiff
blob: 50899b7e654c9ff55d00ec4a5063ec635286334b (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-dns/dns2go/files/dns2go.rc6,v 1.4 2004/07/14 23:22:19 agriffis Exp $

depend() {
	need net
}

start() {
	ebegin "Starting DNS2GO"
	/usr/bin/dns2go
	eend $?
}

stop() {
	ebegin "Stopping DNS2GO"
	/usr/bin/dns2go -k
	eend $?
}