systemd/debian/systemd-container.postrm
2016-11-14 16:30:20 -03:00

13 lines
202 B
Bash

#!/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#