summaryrefslogtreecommitdiffstats
path: root/debian/e2fsprogs.postrm.dh9
blob: 32cb64266853b87339e7949f7f8f29924d7beffe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#!/bin/sh

update_svc() {
	deb-systemd-helper mask "$1" >/dev/null || true

	if deb-systemd-helper --quiet was-enabled "$1"; then
		# Enables the unit on first installation, creates new
		# symlinks on upgrades if the unit file has changed.
		deb-systemd-helper disable "$1" >/dev/null || true
	fi
}

if [ "$1" != "upgrade" ]; then
	# Abort on error.
	set -e

	if [ -x /usr/sbin/update-initramfs -a \
		-e /etc/initramfs-tools/initramfs.conf ]; then
	    update-initramfs -u
	fi

	#DEBHELPER#

	# debhelper doesn't know what timers are...
	update_svc e2scrub_all.timer
	update_svc e2scrub_reap.service

	# Start our new services
	if [ -d /run/systemd/system ]; then
		deb-systemd-invoke stop e2scrub_all.timer >/dev/null || true
	fi
fi

exit 0