> @@ -175,6 +175,10 @@ public Statement createBootstrapScriptForGroup(String
> group) {
> return groupToBootScript.apply(group);
> }
>
> + public Statement createBootstrapScriptForGroupAndNodeName(String group,
> String nodeName) {
> + return groupToBootScript.apply(group, nodeName);
Just FTR, I've had a look at the docs for the `client.rb` file (which is the
one that configures the node being created, and I've only found the *nodeName*
attribute to be node-specific. All other attributes seem to make sense being
"global to a group".
If it turns that other attributes are relevant only to a single node, then the
signature should be changed to accept a `NodeOptions` or similar class instead
of the String. For the moment, I think it is ok as-is.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds/pull/622/files#r21202076