File: libpam-runtime.postrm

package info (click to toggle)
pam 0.79-5%2Betch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 3,248 kB
  • ctags: 1,934
  • sloc: ansic: 21,131; makefile: 1,504; sh: 571; perl: 400; yacc: 398
file content (16 lines) | stat: -rw-r--r-- 310 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh -e

if [ "$1" = "purge" ]; then
	rm -f /etc/pam.d/common-auth /etc/pam.d/common-account \
	      /etc/pam.d/common-session /etc/pam.d/common-password
fi

case $1 in
    abort-upgrade|abort-install)
        mv /etc/pam.d/other.pre-upgrade /etc/pam.d/other 2>/dev/null ||true
	;;
	esac
	


#DEBHELPER#