mirror of
https://github.com/kolesa-team/pve-purestorage-plugin.git
synced 2026-08-12 21:53:06 -06:00
11 lines
308 B
Bash
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
|