mirror of
https://github.com/retspen/webvirtmgr.git
synced 2026-04-25 15:45:51 +03:00
[GH-ISSUE #283] Cloning of machines #224
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @normaldotcom on GitHub (Apr 16, 2014).
Original GitHub issue: https://github.com/retspen/webvirtmgr/issues/283
Have you thought about adding a machine cloning feature? It looks like libvirt doesn't include API calls to actually clone a machine, so it might take a bit of work to accomplish (basically doing what virt-clone does: copying disk images, making a config with a new name, generating a new UUID and MAC).
@retspen commented on GitHub (Apr 18, 2014):
I thought about this function. I need create new XML parser for clone function.
@retspen commented on GitHub (Apr 28, 2014):
Done -
8e4764090f@normaldotcom commented on GitHub (Apr 28, 2014):
Awesome, just tested the functionality and it works well. I do get a 500 error when cloning a large machine (as the qemu-convert command takes a long time to complete), but the actual clone operation completes successfully in the background.
@retspen commented on GitHub (Apr 28, 2014):
You can change timeout for gunicorn in file: /var/www/webvirtmgr/conf/gunicorn.conf.py
@normaldotcom commented on GitHub (Apr 28, 2014):
Done, that does help, although eventually it would be nice to dispatch the operation in the background with when the button is pressed.