summaryrefslogtreecommitdiff
path: root/debian/ipmitool.postinst
diff options
context:
space:
mode:
Diffstat (limited to 'debian/ipmitool.postinst')
-rw-r--r--debian/ipmitool.postinst17
1 files changed, 0 insertions, 17 deletions
diff --git a/debian/ipmitool.postinst b/debian/ipmitool.postinst
deleted file mode 100644
index 7064f87..0000000
--- a/debian/ipmitool.postinst
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/sh
-
-set -e
-
-
-ipmievd_initd_failed() {
- echo "Unable to start ipmievd during installation. Trying to disable."
- if [ -f /etc/default/ipmievd ] && \
- grep -q ^ENABLED=\"false\" /etc/default/ipmievd ; then
- :
- else
- touch /etc/default/ipmievd
- echo "ENABLED=\"false\"" >> /etc/default/ipmievd
- fi
-}
-
-#DEBHELPER#