desktop/virtualbox/virtualbox.install

16 lines
403 B
Plaintext
Raw Normal View History

2016-07-22 06:50:07 +08:00
# vim:set ts=2 sw=2 ft=sh et:
2014-08-05 03:54:11 +08:00
# arg 1: the new package version
2011-07-21 00:14:43 +08:00
post_install() {
2016-07-22 06:50:07 +08:00
systemd-sysusers virtualbox.conf
2011-07-21 00:14:43 +08:00
}
2014-08-05 03:54:11 +08:00
# arg 1: the new package version
# arg 2: the old package version
2011-07-21 00:14:43 +08:00
post_upgrade() {
2016-07-22 06:50:07 +08:00
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
2011-07-21 00:14:43 +08:00
}