summaryrefslogtreecommitdiff
path: root/debian/taler-merchant.prerm
blob: 727964b0f5fc4872186db7dc8602daf5e0601e26 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

set -e

if [ -d /run/systemd/system ] && [ "$1" = remove ]; then
        deb-systemd-invoke stop 'taler-merchant-httpd.service' >/dev/null || true
fi

exit 0