Displaying 2 results from an estimated 2 matches for "destination_xml".
Did you mean:
destination_url
2015 Oct 14
2
virsh blockcopy without undefine
2015 Oct 14
0
Re: virsh blockcopy without undefine
On 10/13/2015 09:46 PM, Nathan Shearer wrote:
> I have a script that performs a backup with the following steps:
>
> virsh dumpxml --inactive "$DOMAIN" > "$TMP/${DOMAIN}.xml" && \
> virsh dumpxml --inactive "$DOMAIN" > "$DESTINATION_XML" && \
> virsh undefine "$DOMAIN" && \
> virsh blockcopy "$DOMAIN" "$SOURCE_DISK" "$DESTINATION_DISK"
> --wait --verbose --finish && \
> virsh define "$TMP/${DOMAIN}.xml"...