18 lines
481 B
Bash
Executable File
18 lines
481 B
Bash
Executable File
#! /bin/sh
|
|
set -e
|
|
|
|
case $1 in
|
|
purge)
|
|
rm -f /etc/default/pcmciautils
|
|
rm -f /etc/udev/rules.d/60-pcmcia.rules
|
|
rm -f /etc/pcmcia/config.opts /etc/pcmcia/config.opts~
|
|
rmdir --ignore-fail-on-non-empty /etc/pcmcia || true
|
|
;;
|
|
esac
|
|
|
|
# Automatically added by dh_installdeb/13.6ubuntu1
|
|
dpkg-maintscript-helper rm_conffile /etc/udev/pcmcia.rules 015-1\+b100 -- "$@"
|
|
dpkg-maintscript-helper rm_conffile /etc/init.d/pcmciautils 015-1\+b100 -- "$@"
|
|
# End automatically added section
|
|
|