This file is indexed.

/usr/share/debhelper/autoscripts/postinst-systemd-restart is in dh-systemd 1.22.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
7
8
9
if [ -d /run/systemd/system ]; then
	systemctl --system daemon-reload >/dev/null || true
	if [ -n "$2" ]; then
		_dh_action=try-restart
	else
		_dh_action=start
	fi
	deb-systemd-invoke $_dh_action #UNITFILES# >/dev/null || true
fi