cargo-deb 1.39.3

Make Debian packages (.deb) easily with a Cargo subcommand
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
if [ "$1" = "remove" ]; then
	if [ -x "/usr/bin/deb-systemd-helper" ]; then
		deb-systemd-helper mask #UNITFILES# >/dev/null || true
	fi
fi

if [ "$1" = "purge" ]; then
	if [ -x "/usr/bin/deb-systemd-helper" ]; then
		deb-systemd-helper purge #UNITFILES# >/dev/null || true
		deb-systemd-helper unmask #UNITFILES# >/dev/null || true
	fi
fi