summaryrefslogtreecommitdiff
path: root/community/virtualbox-modules/virtualbox-host-modules.install
blob: 7043167f835122a6b0a0f327c27bc3cbc5118ee9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
VERSION='3.9.5-1-ARCH'

post_install() {
cat << EOF
===> You must load vboxdrv module before starting VirtualBox:
===> # modprobe vboxdrv
EOF
  depmod $VERSION
}

post_upgrade() {
  depmod $VERSION
  echo 'In order to use the new version, reload all virtualbox modules manually.'
}

post_remove() {
  depmod $VERSION
}

# vim:set ts=2 sw=2 et: