File: postrm

package info (click to toggle)
pcmciautils 018-19
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 484 kB
  • sloc: ansic: 3,901; makefile: 224; lex: 222; sh: 169; yacc: 105; xml: 24
file content (13 lines) | stat: -rw-r--r-- 248 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#! /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

#DEBHELPER#