public static final String CLUSTER_NAME = "CLUSTER_NAME";
//Used to tokenize node agent start/stop scripts
public static TokenValueSet getBaseTokenValueSet(RepositoryConfig config)
{
final TokenValueSet tokens = new TokenValueSet();
TokenValue tv = new TokenValue(CONFIG_HOME, config.getConfigRoot());
tokens.add(tv);
File instanceRoot = new EEFileLayout(config).getRepositoryDir();
// removed because on windows couldn't cd to the config directory, this is like the domain now
//tv = new TokenValue(INSTANCE_ROOT, FileUtils.makeForwardSlashes(instanceRoot.getAbsolutePath()));
tv = new TokenValue(INSTANCE_ROOT, instanceRoot.getAbsolutePath());
tokens.add(tv);
return tokens;
}