script récupération vm
This commit is contained in:
parent
7ec360e162
commit
74a658e86f
15
autres/vm
Executable file
15
autres/vm
Executable file
@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Chemin de destination pour les fichiers OVA
|
||||
destination="/home/sio/mes_vm/"
|
||||
|
||||
# Récupérer la liste des noms de machines virtuelles
|
||||
vms=$(VBoxManage list vms | awk -F '"' '{print $2}')
|
||||
|
||||
# Exporter chaque machine virtuelle au format OVA
|
||||
for vm in $vms; do
|
||||
echo "Exportation de la machine virtuelle : $vm"
|
||||
VBoxManage export "$vm" -o "$destination/$vm.ova"
|
||||
done
|
||||
|
||||
echo "Exportation terminée."
|
Loading…
x
Reference in New Issue
Block a user