pkgsrc/emulators/vmware-module/INSTALL
wiz a612d312ad Do not mention rc.d/vmware, since it does not exist.
Noted by Lubos Vrbka in PR 18490.
2002-11-06 00:14:26 +00:00

37 lines
779 B
Text

#!/bin/sh
#
# $NetBSD: INSTALL,v 1.2 2002/11/06 00:14:26 wiz Exp $
case $2 in
PRE-INSTALL)
;;
POST-INSTALL)
/bin/cat << EOF
===========================================================================
Copy the following files from ${PKG_PREFIX}/etc/rc.d to /etc/rc.d:
linuxrtc vmmon vmnet vmnetif
and append the content of ${PKG_PREFIX}/etc/rc.conf.d/vmware to /etc/rc.conf:
vmware_prefix=${PKG_PREFIX}
vmmon=YES
vmnet=YES
linuxrtc=NO
# XXX should cater for multiple interfaces
vmnetif=YES
vmnetifname=vmnet1
vmnetdev=/dev/vmnet1
vmnetifconfig="inet 172.16.212.1 netmask 0xffffff00"
vmnetif_use_dhcpd=NO
Then, reboot your system.
===========================================================================
EOF
;;
*)
echo "Unexpected argument: $2"
exit 1
;;
esac
exit 0