mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
16 lines
403 B
Bash
16 lines
403 B
Bash
# vim:set ts=2 sw=2 ft=sh et:
|
|
|
|
# arg 1: the new package version
|
|
post_install() {
|
|
systemd-sysusers virtualbox.conf
|
|
}
|
|
|
|
# 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
|
|
}
|