[pve-devel] [PATCH ha-manager] d/postinst: make deb-systemd-invoke non-fatal
Fabian Grünbichler
f.gruenbichler at proxmox.com
Thu Apr 11 12:10:44 CEST 2024
else this can break an upgrade for unrelated reasons.
this also mimics debhelper behaviour more (which we only not use here because
of lack of reload support) - restructured the snippet to be more similar with
an explicit `if` as well.
Signed-off-by: Fabian Grünbichler <f.gruenbichler at proxmox.com>
---
debian/pve-ha-manager.postinst | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/debian/pve-ha-manager.postinst b/debian/pve-ha-manager.postinst
index 94ab797..5c8f0cd 100644
--- a/debian/pve-ha-manager.postinst
+++ b/debian/pve-ha-manager.postinst
@@ -5,11 +5,13 @@ set -e
#DEBHELPER#
if [ "$1" = "triggered" ]; then
- systemctl --quiet is-active pve-ha-lrm.service &&
- deb-systemd-invoke reload-or-try-restart pve-ha-lrm.service
+ if systemctl --quiet is-active pve-ha-lrm.service; then
+ deb-systemd-invoke reload-or-try-restart pve-ha-lrm.service || true
+ fi
- systemctl --quiet is-active pve-ha-crm.service &&
- deb-systemd-invoke reload-or-try-restart pve-ha-crm.service
+ if systemctl --quiet is-active pve-ha-crm.service; then
+ deb-systemd-invoke reload-or-try-restart pve-ha-crm.service || true
+ fi
fi
exit 0
--
2.39.2
More information about the pve-devel
mailing list