summaryrefslogtreecommitdiff
path: root/debian/prerm
diff options
context:
space:
mode:
Diffstat (limited to 'debian/prerm')
-rwxr-xr-xdebian/prerm26
1 files changed, 0 insertions, 26 deletions
diff --git a/debian/prerm b/debian/prerm
deleted file mode 100755
index e66d2d9..0000000
--- a/debian/prerm
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-# Debian prerm script
-#
-set -e
-
-case "$1" in
- purge)
- if [ -d /var/lib/ipmiutil/ ]
- then
- rm -Rf /var/lib/ipmiutil/
- fi
- ;;
- remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
- ;;
- *)
- echo "postrm called with unknown argument \`$1'" >&2
- exit 1
- ;;
-esac
-
-# dh_installdeb will replace this with shell code automatically
-# generated by other debhelper scripts.
-
-#DEBHELPER#
-
-exit 0