Hi,
Here is my solution to hibernate all VMs at reboot or shutdown !
It works for me. Thanks to @davidand for his script example :)
Go in proxmox shell, you need to be root !
vi /etc/init.d/proxmox
Add this :
#!/bin/sh
case "$1" in
start)
qm list | awk -F'[^0-9]*' '$0=$2' | while read...