ansitest/proxmox/proxmox-query-vm-agents.sh
2024-02-25 18:33:54 -07:00

25 lines
662 B
Bash

#!/bin/bash
# 2024.feb kneutron
# REF: https://youtu.be/wp4kCUM6dik?t=233
time qm list |column -t
for vmid in $(qm list |grep running |awk '{print $1}'); do
echo "$(date) - Checking $vmid"
qm agent $vmid ping; rc=$?
if [ $rc -gt 0 ]; then
echo "$vmid guest agent not responding!"
continue;
fi
qm guest cmd $vmid get-host-name |tr -d '{}' |awk 'NF>0'
# qm guest cmd $vmid get-osinfo
done
exit;
qm list
VMID NAME STATUS MEM(MB) BOOTDISK(GB) PID
100 lmde stopped 4096 21.00 0
104 pfsense-272-dhcp-for-HO running 1500 20.00 222982