summaryrefslogtreecommitdiff
path: root/community-testing/open-vm-tools-modules/open-vm-tools-modules.install
diff options
context:
space:
mode:
Diffstat (limited to 'community-testing/open-vm-tools-modules/open-vm-tools-modules.install')
-rw-r--r--community-testing/open-vm-tools-modules/open-vm-tools-modules.install34
1 files changed, 0 insertions, 34 deletions
diff --git a/community-testing/open-vm-tools-modules/open-vm-tools-modules.install b/community-testing/open-vm-tools-modules/open-vm-tools-modules.install
deleted file mode 100644
index 801d2c5b3..000000000
--- a/community-testing/open-vm-tools-modules/open-vm-tools-modules.install
+++ /dev/null
@@ -1,34 +0,0 @@
-KERNEL_VERSION='2.6.38-ARCH'
-
-post_install() {
- depmod -a -v $KERNEL_VERSION > /dev/null 2>&1
-
- VMXNET="install pcnet32 /sbin/modprobe -q --ignore-install vmxnet;"
- VMXNET="$VMXNET /sbin/modprobe -q --ignore-install pcnet32 $CMDLINE_OPTS;"
- VMXNET="$VMXNET /bin/true;"
-
- echo ">>> Enabling vmxnet driver in /etc/modprobe.d/modprobe.conf"
- echo ">>> (this will disable pcnet32 driver)"
- sed "$ a \\\n#VMware net driver\n$VMXNET" -i /etc/modprobe.d/modprobe.conf
- echo
-
- echo ">>>"
- echo ">>> If vmxnet driver doesn't handle your NIC, you have to manually"
- echo ">>> disable loading of pcnet32 driver"
- echo ">>>"
-}
-
-post_upgrade() {
- depmod -a -v $KERNEL_VERSION > /dev/null 2>&1
-}
-
-post_remove() {
- depmod -a -v $KERNEL_VERSION > /dev/null 2>&1
-
- echo ">>> Disabling vmxnet driver in /etc/modprobe.d/modprobe.conf"
- sed "/VMware net driver/,+1 d" -i /etc/modprobe.d/modprobe.conf
-
- echo ">>>"
- echo ">>> Remember to un-blacklist pcnet32 driver"
- echo ">>>"
-}