summaryrefslogtreecommitdiffstats
path: root/t/recipes/checks/maintainer-scripts/systemctl/systemd-general/build-spec/debian/postrm
blob: 6e5813a3b2715da88e6b596439aa848f1f244e13 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

set -e

if [ "$1" = "purge" ] && which systemctl >/dev/null 2>&1; then
    systemctl || true
fi

#DEBHELPER#