Upload var/lib/dpkg/info/adduser.postrm with huggingface_hub
Browse files
var/lib/dpkg/info/adduser.postrm
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#! /bin/sh
|
2 |
+
set -e
|
3 |
+
|
4 |
+
if [ "$1" = "purge" ]; then
|
5 |
+
rm -f /etc/adduser.conf /etc/adduser.conf.dpkg-save
|
6 |
+
fi
|
7 |
+
|
8 |
+
# Automatically added by dh_installdebconf/12.10ubuntu1
|
9 |
+
if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
|
10 |
+
. /usr/share/debconf/confmodule
|
11 |
+
db_purge
|
12 |
+
fi
|
13 |
+
# End automatically added section
|
14 |
+
|