#!/bin/sh
set -e

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

case "$1" in
    purge)
        sed -i "s/$HOST//g" /etc/hosts
        ;;
esac

#DEBHELPER#
exit 0
