From b148e997e9d5fc0525cd4707fa3781057d3686f6 Mon Sep 17 00:00:00 2001 From: huweihua Date: Wed, 4 Jun 2014 22:57:23 -0400 Subject: [PATCH] fix bug: in sysclone, provmethod attribute gets cleared --- xCAT-server/lib/xcat/plugins/destiny.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/destiny.pm b/xCAT-server/lib/xcat/plugins/destiny.pm index a0b5ecd6f..464dde9f4 100755 --- a/xCAT-server/lib/xcat/plugins/destiny.pm +++ b/xCAT-server/lib/xcat/plugins/destiny.pm @@ -503,7 +503,9 @@ sub setdestiny { } } } - if ($provmethod ne 'install') { + #if ($provmethod ne 'install') { + #fix bug: in sysclone, provmethod attribute gets cleared + if ($provmethod ne 'install' && $provmethod ne 'sysclone') { push(@nodestoblank, $_); } }