summaryrefslogtreecommitdiffstats
path: root/debian/systemd-container.postrm
blob: 2140680fab886493415de958042b5ca4cd739a9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

case "$1" in
    purge)
        # clean up after manually enabled units in postinst
        rm -f /etc/systemd/system/multi-user.target.wants/machines.target
    ;;
esac

#DEBHELPER#