mirror of
https://git.proxmox.com/git/systemd
synced 2026-01-05 03:17:54 +00:00
This requires dbus >= 1.9.18. Both Debian stretch and Ubuntu 16.04 LTS ship a new enough version so we shouldn't need a versioned Depends (or versioned Breaks in case of systemd). Gbp-Dch: Short
11 lines
195 B
Bash
11 lines
195 B
Bash
#!/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#
|