summaryrefslogtreecommitdiff
path: root/debian/ipmitool.postinst
blob: 125653a0b60cf140887cd379e4f97d6c9891b4b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh -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#