systemd/debian/systemd-container.postinst
2019-05-08 01:33:37 +02:00

11 lines
153 B
Bash

#!/bin/sh
set -e
# Enable machines.target by default on new installs
if [ -z "$2" ]; then
systemctl enable machines.target || true
fi
#DEBHELPER#