udevil/debian/postrm
2012-05-30 09:25:09 -06: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