File: ipmitool.postinst

package info (click to toggle)
ipmitool 1.8.11-2%2Bsqueeze2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 4,048 kB
  • ctags: 4,262
  • sloc: ansic: 43,640; sh: 9,262; makefile: 217
file content (14 lines) | stat: -rw-r--r-- 322 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

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#