Add win4lin

This commit is contained in:
Mario Fetka
2022-11-19 21:49:12 +01:00
parent 1bf994041f
commit dcd0ea6843
77 changed files with 3687 additions and 50 deletions

View File

@@ -0,0 +1,21 @@
#!/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 $?
}