ACCC1380 commited on
Commit
d4e6e04
1 Parent(s): b4f7b22

Upload var/lib/dpkg/info/libpam-runtime.postrm with huggingface_hub

Browse files
var/lib/dpkg/info/libpam-runtime.postrm ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh -e
2
+
3
+ if [ "$1" = "purge" ]; then
4
+ rm -f /etc/pam.d/common-auth /etc/pam.d/common-account \
5
+ /etc/pam.d/common-session /etc/pam.d/common-password
6
+ rm -f /var/lib/pam/auth /var/lib/pam/account /var/lib/pam/session \
7
+ /var/lib/pam/password /var/lib/pam/seen
8
+ rmdir --ignore-fail-on-non-empty /var/lib/pam
9
+ fi
10
+
11
+ # Automatically added by dh_installdebconf/12.10ubuntu1
12
+ if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
13
+ . /usr/share/debconf/confmodule
14
+ db_purge
15
+ fi
16
+ # End automatically added section
17
+