summaryrefslogtreecommitdiff
blob: 61c8fd061dded5e5d33df6a52fbfd1a7a0dc01e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/sbin/runscript
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

opts="start stop status"

depend() {
        need net
}

start() {
	ebegin "Starting tuncfg"
	start-stop-daemon --start --exec /usr/sbin/tuncfg
	eend $?
}

stop() {
	ebegin "Stopping tuncfg"
	start-stop-daemon --stop --name tuncfg 
	eend $?
}