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
This commit is contained in:
mellor 2011-03-02 22:56:49 +00:00
parent 55dafcefa1
commit e9ec398ed7

View File

@ -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;