mirror of
https://git.proxmox.com/git/systemd
synced 2025-08-17 04:23:07 +00:00
11 lines
153 B
Bash
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#
|