blob: 75d28784a7e08a21fb515044f64679c0ec6d9d83 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
KERNEL_VERSION='3.0-LIBRE'
post_install() {
cat << EOM
===> virtualbox-parabola-modules post-install message:
===>
===> You may want to load vboxguest, vboxsf and vboxvideo
===>
===> To load them automatically, add them
===> to the MODULES array in /etc/rc.conf.
EOM
depmod -v $KERNEL_VERSION >/dev/null 2>&1
}
post_remove() {
depmod -v $KERNEL_VERSION >/dev/null 2>&1
}
post_upgrade() {
depmod -v $KERNEL_VERSION >/dev/null 2>&1
}
|