#!/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#