summaryrefslogtreecommitdiffstats
path: root/debian/systemd-container.postinst
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--debian/systemd-container.postinst10
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..a65319b
--- /dev/null
+++ b/debian/systemd-container.postinst
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+set -e
+
+# Enable machines.target by default on new installs and upgrades
+if dpkg --compare-versions "$2" lt "232-4~"; then
+ systemctl enable machines.target || true
+fi
+
+#DEBHELPER#