16 lines
208 B
Bash
Executable File
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
|