diff --git a/xCAT-server/lib/xcat/plugins/kvm.pm b/xCAT-server/lib/xcat/plugins/kvm.pm index 317c9461f..84db86a98 100644 --- a/xCAT-server/lib/xcat/plugins/kvm.pm +++ b/xCAT-server/lib/xcat/plugins/kvm.pm @@ -2300,8 +2300,9 @@ sub power { unless ($newxml) { $newxml=$oldxml; } #TODO: remove this when the 'else' line can be sanely filled out if ($newxml) { #need to destroy and repower.. $updatetable->{kvm_nodedata}->{$node}->{xml}=$newxml; + my $persist = $dom->is_persistent(); $dom->destroy(); - $dom->undefine(); + if ($persist) { $dom->undefine(); } undef $dom; if ($use_xhrm) { xhrm_satisfy($node,$hyp);