6 lines
194 B
Bash
6 lines
194 B
Bash
|
#!/bin/bash
|
||
|
vm=$1
|
||
|
|
||
|
echo MIGRATING $vm ...
|
||
|
virsh migrate --p2p $vm --live --verbose --undefinesource --persistent --copy-storage-all --abort-on-error qemu+ssh://britt.libre-en-communs.org/system
|