#!/bin/sh set -e #DEBHELPER# if [ "$1" = "triggered" ]; then if systemctl --quiet is-active pve-ha-lrm.service; then deb-systemd-invoke reload-or-try-restart pve-ha-lrm.service || true fi 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