File: ipmitool.postinst

package info (click to toggle)
ipmitool 1.8.19-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,372 kB
  • sloc: ansic: 67,308; sh: 1,569; makefile: 208; xml: 32
file content (28 lines) | stat: -rw-r--r-- 592 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh

set -e

BIN=/usr/bin/wget
SOURCE=https://www.iana.org/assignments/enterprise-numbers.txt
DEST=/usr/share/misc/enterprise-numbers.txt


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
}

[ -x $BIN ] || exit 0

#echo "Download enterprise-numbers.txt"

#$BIN -O $DEST $SOURCE  >/dev/null 2>&1


#DEBHELPER#