mirror of
https://git.proxmox.com/git/systemd
synced 2025-12-26 08:26:38 +00:00
13 lines
202 B
Bash
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#
|