summarylogtreecommitdiffstats
path: root/openafs-modules-dkms.install
diff options
context:
space:
mode:
authorMichael Lass2016-03-08 19:30:29 +0100
committerMichael Lass2016-03-08 19:30:29 +0100
commit734defdbdc7d48c14407e2f9c05a972eeb6a589d (patch)
treea83522ff1b8d4758c386405f7b99a774e951e9d9 /openafs-modules-dkms.install
parent8a88343e705ad908893fcd88e904628019f242e1 (diff)
downloadaur-734defdbdc7d48c14407e2f9c05a972eeb6a589d.tar.gz
No need for install script
Pacman now has a hook to handle DKMS packages properly. Manual adding, building and removing is not necessary anymore. Don't bump pkgrel for now as this package is currently broken anyway.
Diffstat (limited to 'openafs-modules-dkms.install')
-rw-r--r--openafs-modules-dkms.install18
1 files changed, 0 insertions, 18 deletions
diff --git a/openafs-modules-dkms.install b/openafs-modules-dkms.install
deleted file mode 100644
index 3d0ae0c52627..000000000000
--- a/openafs-modules-dkms.install
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-post_install() {
- dkms add openafs/${1%-*}
- dkms install openafs/${1%-*}
-}
-
-pre_upgrade() {
- pre_remove "$2"
-}
-
-post_upgrade() {
- post_install "$1"
-}
-
-pre_remove() {
- [ -n "${1%-*}" ] && dkms remove openafs/${1%-*} --all
-}