summaryrefslogtreecommitdiff
path: root/libre/vhba-module-libre/vhba-module.install
diff options
context:
space:
mode:
Diffstat (limited to 'libre/vhba-module-libre/vhba-module.install')
-rw-r--r--libre/vhba-module-libre/vhba-module.install22
1 files changed, 22 insertions, 0 deletions
diff --git a/libre/vhba-module-libre/vhba-module.install b/libre/vhba-module-libre/vhba-module.install
new file mode 100644
index 000000000..793cffd8d
--- /dev/null
+++ b/libre/vhba-module-libre/vhba-module.install
@@ -0,0 +1,22 @@
+EXTRAMODULES=
+
+_updatemod() {
+ echo " > Updating module dependencies..."
+ depmod $(cat /usr/lib/modules/$EXTRAMODULES/version)
+}
+
+post_install() {
+ post_upgrade
+}
+
+post_upgrade() {
+ getent group cdemu &>/dev/null || groupadd -r cdemu
+ _updatemod
+}
+
+post_remove() {
+ _updatemod
+ groupdel cdemu
+}
+
+# vim:set ts=2 sw=2 et: