summaryrefslogtreecommitdiff
path: root/libre/virtualbox-libre-modules/virtualbox-libre-guest-modules.install
blob: eb17074717c1ef669b7f15ccf6aa121a21d2ad96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
_depmod() {
  EXTRAMODULES='extramodules-3.10-LIBRE'
  depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
}

post_install() {
  cat << EOF
===> You may want to load vboxguest, vboxsf and vboxvideo
EOF
  _depmod
}

post_upgrade() {
  _depmod
}

post_remove() {
  _depmod
}

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