File: postinst-systemd-restartnostart

package info (click to toggle)
debhelper 13.24.2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 5,344 kB
  • sloc: perl: 14,683; makefile: 131; sh: 9
file content (8 lines) | stat: -rw-r--r-- 345 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ] || [ "$1" = "abort-deconfigure" ] || [ "$1" = "abort-remove" ] ; then
	if [ -z "$DPKG_ROOT" ] && [ -d /run/systemd/system ]; then
		systemctl --system daemon-reload >/dev/null || true
		if [ -n "$2" ]; then
			deb-systemd-invoke #RESTART_ACTION# #UNITFILES# >/dev/null || true
		fi
	fi
fi