Initial commit
This commit is contained in:
18
moveVmToNewDatastore.sh
Executable file
18
moveVmToNewDatastore.sh
Executable file
@@ -0,0 +1,18 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Get VMID from VM list: qm list
|
||||
# Get all list of datastores: pvesm status
|
||||
|
||||
myvmid=$1
|
||||
datastore=$2
|
||||
|
||||
echo ***
|
||||
echo Moving $myvmid to $datastore
|
||||
echo
|
||||
|
||||
for vmid in $myvmid; do
|
||||
for disk in $(qm config $vmid | grep vm-$vmid-disk | cut -d: -f1); do
|
||||
echo Moving: vm-$vmid-disk
|
||||
qm move-disk $vmid $disk $datastore --delete
|
||||
done
|
||||
done
|
||||
Reference in New Issue
Block a user