]> git.proxmox.com Git - pve-ha-manager.git/commitdiff
bump version to 4.0.4 master
authorThomas Lamprecht <t.lamprecht@proxmox.com>
Mon, 22 Apr 2024 11:47:22 +0000 (13:47 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Mon, 22 Apr 2024 11:47:22 +0000 (13:47 +0200)
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
debian/changelog
debian/pve-ha-manager.postinst

index 6a1a3043d72fc0727a8a6452c9972898fd05c14f..345960f1ea6db1f75a9e87e2360dc183b662b2f6 100644 (file)
@@ -1,3 +1,19 @@
+pve-ha-manager (4.0.4) bookworm; urgency=medium
+
+  * d/postinst: make deb-systemd-invoke non-fatal
+
+ -- Proxmox Support Team <support@proxmox.com>  Mon, 22 Apr 2024 13:47:18 +0200
+
+pve-ha-manager (4.0.3) bookworm; urgency=medium
+
+  * manager: send notifications via new notification module
+
+  * fix #4984: manager: add service to migration-target usage only if online
+
+  * crs: avoid auto-vivification when adding node to service usage
+
+ -- Proxmox Support Team <support@proxmox.com>  Fri, 17 Nov 2023 14:49:03 +0100
+
 pve-ha-manager (4.0.2) bookworm; urgency=medium
 
   * cluster resource manager: clear stale maintenance node, which can be
index 94ab797a7e379148d241caaaede532b0b9dbdf1d..5c8f0cdbb38b838889f09d5b2fede7f477205485 100644 (file)
@@ -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