1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/emulators/vmware2/files/vmware.sh
Josef Karthauser 6f08968435 Virgin import of Vladimir N. Silyaev's port of the linux version of the
VMWare virtual machine.

PR:		ports/16337
Submitted by:	vsilyaev@mindspring.com
2000-01-26 22:06:13 +00:00

39 lines
695 B
Bash

#!/bin/sh
#
# Start or stop vmware
#
vmware_dir=@@PREFIX@@/lib/vmware
networking=@@NETWORKING@@
host_ip=@@HOST_IP@@
netmask=@@NETMASK@@
[ -x $vmware_dir/bin/vmware ] || exit
exec >/dev/null
case $1 in
start)
kldload ${vmware_dir}/lib/modules/vmmon.ko
if [ $networking -eq 1 ]; then
kldload ${vmware_dir}/lib/modules/vmnet.ko
echo -n >/dev/vmnet1
ifconfig vmnet1 $host_ip netmask $netmask
fi
echo -n " VMware" >/dev/tty
;;
stop)
kldunload vmmon
if [ $networking -eq 1 ]; then
ifconfig vmnet1 down
ifconfig vmnet1 delete $host_ip
kldunload vmnet
fi
;;
*)
echo "usage: `basename $0` {start|stop}" >&2
exit 64
;;
esac