ACCC1380 commited on
Commit
a430421
1 Parent(s): 55eb871

Upload var/lib/dpkg/info/util-linux.prerm with huggingface_hub

Browse files
Files changed (1) hide show
  1. var/lib/dpkg/info/util-linux.prerm +27 -0
var/lib/dpkg/info/util-linux.prerm ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/sh
2
+ set -e
3
+
4
+ case "$1" in
5
+ remove)
6
+ update-alternatives --remove pager /bin/more
7
+ ;;
8
+
9
+ upgrade|failed-upgrade|deconfigure)
10
+ ;;
11
+
12
+ esac
13
+
14
+ # Automatically added by dh_installsystemd/12.10ubuntu1
15
+ if [ -d /run/systemd/system ] && [ "$1" = remove ]; then
16
+ deb-systemd-invoke stop 'fstrim.service' 'fstrim.timer' >/dev/null || true
17
+ fi
18
+ # End automatically added section
19
+ # Automatically added by dh_installsystemd/12.10ubuntu1
20
+ if [ -d /run/systemd/system ] && [ "$1" = remove ]; then
21
+ deb-systemd-invoke stop 'fstrim.timer' >/dev/null || true
22
+ fi
23
+ # End automatically added section
24
+ # Automatically added by dh_installdeb/12.10ubuntu1
25
+ dpkg-maintscript-helper rm_conffile /etc/cron.weekly/fstrim 2.31.1-0.4ubuntu1\~ -- "$@"
26
+ # End automatically added section
27
+