Add files via upload

This commit is contained in:
kneutron 2024-05-28 11:05:53 -06:00 committed by GitHub
parent 48630aac30
commit a0182229a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,12 @@
#!/bin/bash
pct list
echo '====='
for ctr in $(pct list |grep running |awk '{print $1}'); do
echo "VMID $ctr"
lxc-info -i -n $ctr
echo '====='
done
exit;