diff options
Diffstat (limited to 'debian/systemd-container.postinst')
-rw-r--r-- | debian/systemd-container.postinst | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/debian/systemd-container.postinst b/debian/systemd-container.postinst new file mode 100644 index 0000000..3d1c8b6 --- /dev/null +++ b/debian/systemd-container.postinst @@ -0,0 +1,10 @@ +#!/bin/sh + +set -e + +# Enable machines.target by default on new installs +if [ -z "$2" ]; then + systemctl enable machines.target || true +fi + +#DEBHELPER# |