summaryrefslogtreecommitdiff
path: root/libre/vhba-module/kmod.install
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-09-01 07:52:09 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-09-01 07:59:21 -0300
commit3f2a8eca7c7bdcd7bcdc9b67e00f02cdef9002bf (patch)
tree8a2143d69f3b7f572060b0331fa10cd77e7b67b2 /libre/vhba-module/kmod.install
parentd5730eabb036bfa84f5831fa592d49222cd6ad5e (diff)
remove parabola suffix and add complex pkgrel on kernel module packages
Diffstat (limited to 'libre/vhba-module/kmod.install')
-rw-r--r--libre/vhba-module/kmod.install20
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
+}