andreaturli commented on this pull request.
> + vSwitchId = setIfTestSystemPropertyPresent(properties, provider +
> ".vSwitchId");
+ return properties;
+ }
+
+ @Override
+ protected TemplateBuilder templateBuilder() {
+ return super.templateBuilder()
+ .options(vpcId(vpcId)
+ .vSwitchId(vSwitchId));
+ }
+
+ @Override
+ protected Template addRunScriptToTemplate(Template template) {
+ template.getOptions().runScript(Statements.newStatementList(
+ new Statement[] { AdminAccess.standard(), Statements.exec("sleep
50"), InstallJDK.fromOpenJDK() }));
+ return template;
this was an ugly test, we need to fix `InstallJDK` as it is broken for
yum-based OS, IMHO
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/443#discussion_r207259289