From b10f2968d4b3fa474897d0806f1bc6201eab7d0a Mon Sep 17 00:00:00 2001 From: mellor Date: Tue, 26 Jun 2012 22:03:07 +0000 Subject: [PATCH] defect 3538251 - rollupdate boundary error fix: did not run llmkres if node count less than updateall_nodecount git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@13172 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/rollupdate.pm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/rollupdate.pm b/xCAT-server/lib/xcat/plugins/rollupdate.pm index 09e3ca647..2f40a18a3 100644 --- a/xCAT-server/lib/xcat/plugins/rollupdate.pm +++ b/xCAT-server/lib/xcat/plugins/rollupdate.pm @@ -1121,7 +1121,8 @@ my @rcblines; } else { my $submit_count = 1; if ($::updateall){ - $submit_count = $machinecount / $::updateall_nodecount; + $submit_count = int($machinecount / $::updateall_nodecount); + if ($submit_count == 0) {$submit_count = 1;} } for (1..$submit_count) { @llsubmit = xCAT::Utils->runcmd( "$cmd", 0 );