summarylogtreecommitdiffstats
path: root/virtualbox.install
diff options
context:
space:
mode:
Diffstat (limited to 'virtualbox.install')
-rw-r--r--virtualbox.install12
1 files changed, 12 insertions, 0 deletions
diff --git a/virtualbox.install b/virtualbox.install
new file mode 100644
index 000000000000..ca39579b2a73
--- /dev/null
+++ b/virtualbox.install
@@ -0,0 +1,12 @@
+#!/bin/bash
+
+# arg 1: the new package version
+# arg 2: the old package version
+post_upgrade() {
+ if (( $(vercmp $2 5.0.16-1) < 0 )); then
+ echo '==> Since version 5.0.14-2 kernel modules are provided via dkms'
+ echo '==> Check you have the headers matching your kernel installed'
+ fi
+}
+
+# vim:set ts=2 sw=2 ft=sh et: