Project

General

Profile

Bug #22298

Updated by Peter Amstutz 17 days ago

https://gist.githubusercontent.com/zoe-translates/800530a5955fd82f267359eda857f376/raw/22aaedbd599c9b9437a2e2e0ef90b024a536b037/fix-installer-sh-syntax.patch 

 On further examination, what the patch does is make this work: 

 <pre> 
 # The mapping of nodes to roles 
 # installer.sh will log in to each of these nodes and then provision 
 # it for the specified roles. 
 NODES=( 
   [demo.vir-test.home.arpa]='' 
 ) 
 </pre> 

 I think this triggers a default "install everything" behavior in the provision.sh script, but it would be much better (and not require the installer.sh patch) if it was written this way: 

 <pre> 
 NODES=( 
   [demo.vir-test.home.arpa]='database,controller,monitoring,workbench,workbench2,webshell,keepproxy,keepweb,websocket,dispatcher,keepbalance,keepstore' 
 ) 
 </pre> 

 The reason for the confusion is that @local.params.example.single_host_single_hostname@ uses the blank version, and it wasn't tested properly. 

Back