diff options
author | zuntum <zuntum@pkgsrc.org> | 2001-10-31 22:52:58 +0000 |
---|---|---|
committer | zuntum <zuntum@pkgsrc.org> | 2001-10-31 22:52:58 +0000 |
commit | d038a73ebd432fae3ce355b84443038f88cb7199 (patch) | |
tree | b3c17888184b1b17ed1b1fa28f1697197bb0b4f6 /emulators/vmware-module/INSTALL | |
parent | 70bae73d77e50256a2ee847bd9be11b761bcea01 (diff) | |
download | pkgsrc-d038a73ebd432fae3ce355b84443038f88cb7199.tar.gz |
Move pkg/ files into package's toplevel directory
Diffstat (limited to 'emulators/vmware-module/INSTALL')
-rw-r--r-- | emulators/vmware-module/INSTALL | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/emulators/vmware-module/INSTALL b/emulators/vmware-module/INSTALL new file mode 100644 index 00000000000..4c54ca1ee36 --- /dev/null +++ b/emulators/vmware-module/INSTALL @@ -0,0 +1,37 @@ +#!/bin/sh +# +# $NetBSD: INSTALL,v 1.1 2001/10/31 23:54:09 zuntum 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 vmware + +and append the content of ${PKG_PREFIX}/etc/rc.conf.d 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 |