From e9ec398ed7a16ad83c171bfbc3388027f224ba38 Mon Sep 17 00:00:00 2001 From: mellor Date: Wed, 2 Mar 2011 22:56:49 +0000 Subject: [PATCH] rollupdate - workaround for LL EXTSHM problem git-svn-id: https://svn.code.sf.net/p/xcat/code/xcat-core/trunk@8970 8638fb3e-16cb-4fca-ae20-7b5d299a9bcd --- xCAT-server/lib/xcat/plugins/rollupdate.pm | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/rollupdate.pm b/xCAT-server/lib/xcat/plugins/rollupdate.pm index d3882bcb8..7ff756230 100644 --- a/xCAT-server/lib/xcat/plugins/rollupdate.pm +++ b/xCAT-server/lib/xcat/plugins/rollupdate.pm @@ -2596,7 +2596,13 @@ sub llreconfig { if ( $llattr =~ /RESOURCE_MGR_LIST/ ) { $llrms = $llval; } } - $cmd = "llrctl reconfig"; + ###### + ### WORKAROUND FOR LL BUG + ### The "EXTSHM=ON" is a workaround for a LL bug + ### This must be set when calling llrctl from xcatd + ###### + #$cmd = "llrctl reconfig"; + $cmd = "export EXTSHM=ON;llrctl reconfig"; my @llms = split(/\s+/,$llcms." ".$llrms); my %have = (); my @llnodes;