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

set -e

# Enable machines.target by default on new installs
if [ -z "$2" ]; then
    systemctl enable machines.target || true
fi

#DEBHELPER#