Re: [virt-tools-list] [virt-manager] [PATCH v4 0/4] Integration of virt-bootstrap

2017-07-13 Thread Cole Robinson
On 07/13/2017 03:49 AM, Radostin Stoyanov wrote: > Thank you for the feedback. I revised the patch series. > > Radostin > > Commits (4): > create: Call virt-bootstrap asynchronously > create: Show progress of container bootstrap > asyncjob: Add enable/update details methods > create:

[virt-tools-list] [virt-manager] [PATCH v4 1/4] create: Call virt-bootstrap asynchronously

2017-07-13 Thread Radostin Stoyanov
The bootstrap method is called at the end of the "create dialog" (when "Finish" button is clicked). We handle two cases: 1. When virt-bootstrap fails. User re-clicks the 'Finish' button and we reattempt the container bootstrap. 2. When virt-bootstrap succeeds, but something later in the install

[virt-tools-list] [virt-manager] [PATCH v4 4/4] create: Show details of container bootstrap

2017-07-13 Thread Radostin Stoyanov
Get get information about the progress from virt-bootstrap and show it on GUI. --- virtManager/create.py | 12 +++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/virtManager/create.py b/virtManager/create.py index 447e9de..65d9175 100644 --- a/virtManager/create.py +++

[virt-tools-list] [virt-manager] [PATCH v4 0/4] Integration of virt-bootstrap

2017-07-13 Thread Radostin Stoyanov
Thank you for the feedback. I revised the patch series. Radostin Commits (4): create: Call virt-bootstrap asynchronously create: Show progress of container bootstrap asyncjob: Add enable/update details methods create: Show details of container bootstrap ui/asyncjob.ui | 33

[virt-tools-list] [virt-manager] [PATCH v4 3/4] asyncjob: Add enable/update details methods

2017-07-13 Thread Radostin Stoyanov
Add virtual terminal emulator (Vte) in which could be shown details of background running process. Usage example: - To enable details: > asyncjob.details_enable() - To show text inside the Vte: > asyncjob.details_update("Some text here") --- ui/asyncjob.ui | 33

[virt-tools-list] [virt-manager] [PATCH v4 2/4] create: Show progress of container bootstrap

2017-07-13 Thread Radostin Stoyanov
Display the current status and progress from virt-bootstrap. --- virtManager/create.py | 18 +- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/virtManager/create.py b/virtManager/create.py index a3d8ac4..447e9de 100644 --- a/virtManager/create.py +++