From bc003c390f08031ec772ea0d1aaf9861c2ae03ac Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Mon, 20 Jun 2022 17:00:46 +0200 Subject: -fix systemd integration --- debian/taler-merchant.postinst | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'debian/taler-merchant.postinst') diff --git a/debian/taler-merchant.postinst b/debian/taler-merchant.postinst index 2f54b038..58c075d9 100644 --- a/debian/taler-merchant.postinst +++ b/debian/taler-merchant.postinst @@ -2,6 +2,22 @@ set -e +if [ -d /run/systemd/system ]; then + systemctl --system daemon-reload >/dev/null || true +fi +if [ "$1" = "remove" ]; then + if [ -x "/usr/bin/deb-systemd-helper" ]; then + deb-systemd-helper mask 'taler-merchant-httpd.service' >/dev/null || true + fi +fi + +if [ "$1" = "purge" ]; then + if [ -x "/usr/bin/deb-systemd-helper" ]; then + deb-systemd-helper purge 'taler-merchant-httpd.service' >/dev/null || true + deb-systemd-helper unmask 'taler-merchant-httpd.service' >/dev/null || true + fi +fi + TALER_HOME="/var/lib/taler" _USERNAME=taler-merchant-httpd _GROUPNAME=www-data -- cgit v1.2.3