#!/bin/sh

set -e

. /usr/share/debconf/confmodule

case "$1" in
    remove|purge)
	# Remove configuration files
	sed -i 's/^WAIT_ONLINE_TIMEOUT=5//Ig' /etc/default/networking
    ;;
esac

#DEBHELPER#
