Files
pve-purestorage-plugin/debian/postrm
T
2024-12-04 22:27:16 +05:00

11 lines
308 B
Bash

#!/bin/bash
set -e
if [ "$1" = "configure" ]; then
systemctl try-restart pve-cluster.service || true
systemctl try-restart pvedaemon.service || true
systemctl try-restart pvestatd.service || true
systemctl try-restart pveproxy.service || true
systemctl try-restart pvescheduler.service || true
fi