blob: 78678924f7abb1b1f42f178b9db0d1c011438581 (
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-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpv6/files/dhcp6x.initd.in,v 1.1 2008/03/29 19:43:47 vapier Exp $
depend() {
need net
}
start() {
ebegin "Starting dhcp6x"
start-stop-daemon --start --quiet --exec /usr/sbin/dhcp6x -- ${DHCP6X_OPTS}
eend $?
}
stop() {
ebegin "Stopping dhcp6x"
start-stop-daemon --stop --quiet --exec /usr/sbin/dhcp6x
eend $?
}
|