udevil/distros/debian/postrm
2013-02-11 06:22:43 -07:00

16 lines
208 B
Bash
Executable File

#! /bin/sh
set -e
case "$1" in
purge)
rm -rf /etc/udevil
;;
esac
# dh_installdeb will replace this with shell code automatically
# generated by other debhelper scripts.
#DEBHELPER#
exit 0