summarylogtreecommitdiffstats
path: root/host.install
blob: dfbc2f7171cf3ba4048f2581890ade523b1a8b56 (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-4.13-uksm'
	depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
}

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

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

post_remove() {
	_depmod
}