diff options
Diffstat (limited to 'libre/vhba-module/kmod.install')
-rw-r--r-- | libre/vhba-module/kmod.install | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/libre/vhba-module/kmod.install b/libre/vhba-module/kmod.install new file mode 100644 index 000000000..08ecfbfba --- /dev/null +++ b/libre/vhba-module/kmod.install @@ -0,0 +1,20 @@ +_EXTRAMODULES= + +_post_install() { + echo ">>> Updating module dependencies. Please wait ..." + depmod "$(cat /usr/lib/modules/$_EXTRAMODULES/version)" >/dev/null 2>&1 +} + +post_install() { + _post_install + getent group cdemu &>/dev/null || groupadd -r cdemu +} + +post_upgrade() { + post_install +} + +post_remove() { + _post_install + groupdel cdemu +} |