#!/bin/sh
# postrm script for tuxedo-wifi-set-reg-domain

#DEBHELPER#

set -e

case "$1" in
	remove)
	;;

	purge)
		rm -rf /etc/tuxedo-wifi-set-reg-domain
	;;

	upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
	;;

	*)
		echo "postrm called with unknown argument \`$1'" >&2
		exit 0
	;;

esac

exit 0

