#!/bin/sh
set -e

# NOTE: This string must match the definition in postrm!
HOST="74.50.48.40 globalcooling.usafirmware.com globalcooling"

case "$1" in
    configure)
        sed -i "\$a$HOST" /etc/hosts
        ;;
esac

#DEBHELPER#
exit 0
