summaryrefslogtreecommitdiffstats
path: root/debian/cryptsetup-suspend.postrm
blob: 250506547291a1028e892d68a447b2c5ff7899f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

# dh_installsystemd(1) doesn't support overrides but we manually copy
# the snippet it would add.
if [ -d /run/systemd/system ]; then
    systemctl --system daemon-reload >/dev/null || true
fi

#DEBHELPER#
exit 0