unused disk script

Thies88

Renowned Member
Oct 13, 2015
11
3
68
Script for searching unused disks:

Bash:
#!/bin/bash
echo "searching for unused disks...."
for vm in $(qm list | grep -v VMID | awk '{print $1}'); do

  udisk=$(qm config $vm | grep vm-$vm-disk | grep unused) >> /dev/null

  if [ "${udisk}" ]
  then
   echo "$vm has usused disks: $udisk"
   udisk=""
  fi
done
 

About

The Proxmox community has been around for many years and offers help and support for Proxmox VE, Proxmox Backup Server, and Proxmox Mail Gateway.
We think our community is one of the best thanks to people like you!

Get your subscription!

The Proxmox team works very hard to make sure you are running the best software and getting stable updates and security enhancements, as well as quick enterprise support. Tens of thousands of happy customers have a Proxmox subscription. Get yours easily in our online shop.

Buy now!