diff --git a/clientside/tmcc/linux/xen/libvnode_xen.pm b/clientside/tmcc/linux/xen/libvnode_xen.pm index 9e70916bd57c9282e5ca7716d2b3c2bc9bbc627b..6761361a622973f1915ee61ba4bf4ab83d007d64 100644 --- a/clientside/tmcc/linux/xen/libvnode_xen.pm +++ b/clientside/tmcc/linux/xen/libvnode_xen.pm @@ -1741,13 +1741,16 @@ sub vnodeBoot($$$$) # itself with an alarm. # vnodeHalt($vnode_id, $vmid, $vnconfig, $private); + print "Container halted, waiting for it do disappear ...\n"; $countdown = 10; while ($countdown >= 0) { sleep(5); last if (! domainExists($vnode_id)); $countdown--; + print "Container not gone yet\n"; } + print "Container is gone ($i)!\n"; } return -1; }