22 lines
456 B
Plaintext
22 lines
456 B
Plaintext
#!/sbin/runscript
|
|
# Copyright 1999-2004 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/app-emulation/win4lin/files/win4lin.initd.new,v 1.3 2004/07/14 21:24:52 agriffis Exp $
|
|
|
|
depend() {
|
|
need net
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting Win4Lin"
|
|
/etc/rc.d/init.d/Win4Lin start > /dev/null
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping Win4Lin"
|
|
/etc/rc.d/init.d/Win4Lin stop > /dev/null
|
|
eend $?
|
|
}
|
|
|