summarylogtreecommitdiffstats
path: root/host.install
diff options
context:
space:
mode:
Diffstat (limited to 'host.install')
-rw-r--r--host.install21
1 files changed, 0 insertions, 21 deletions
diff --git a/host.install b/host.install
deleted file mode 100644
index dfbc2f7171cf..000000000000
--- a/host.install
+++ /dev/null
@@ -1,21 +0,0 @@
-_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
-}