Upload var/lib/dpkg/info/e2fsprogs.postrm with huggingface_hub
Browse files
var/lib/dpkg/info/e2fsprogs.postrm
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#!/bin/sh
|
2 |
+
set -e
|
3 |
+
# Automatically added by dh_installsystemd/12.10ubuntu1
|
4 |
+
if [ -d /run/systemd/system ]; then
|
5 |
+
systemctl --system daemon-reload >/dev/null || true
|
6 |
+
fi
|
7 |
+
# End automatically added section
|
8 |
+
# Automatically added by dh_installsystemd/12.10ubuntu1
|
9 |
+
if [ "$1" = "remove" ]; then
|
10 |
+
if [ -x "/usr/bin/deb-systemd-helper" ]; then
|
11 |
+
deb-systemd-helper mask 'e2scrub_all.timer' 'e2scrub_reap.service' >/dev/null || true
|
12 |
+
fi
|
13 |
+
fi
|
14 |
+
|
15 |
+
if [ "$1" = "purge" ]; then
|
16 |
+
if [ -x "/usr/bin/deb-systemd-helper" ]; then
|
17 |
+
deb-systemd-helper purge 'e2scrub_all.timer' 'e2scrub_reap.service' >/dev/null || true
|
18 |
+
deb-systemd-helper unmask 'e2scrub_all.timer' 'e2scrub_reap.service' >/dev/null || true
|
19 |
+
fi
|
20 |
+
fi
|
21 |
+
# End automatically added section
|