// Look for environment variables configured on the entity
Map<String, Object> shellEnv = entity.getConfig(SoftwareProcess.SHELL_ENVIRONMENT);
if (shellEnv != null && !shellEnv.isEmpty()) {
String env = Joiner.on(':').withKeyValueSeparator("=").join(shellEnv);
options.env(ImmutableList.of(env));
}
return options;
}