List VMs with "Start/Shutdown order" information

Not directly, but with some little hack:

Code:
grep startup /etc/pve/qemu-server/* | awk -F'order=' '{print $2, $0}' | sort -n | cut -d' ' -f2-
 
  • Like
Reactions: UdoB