From 424351b1c36f4486ba4fe469409291ce57c6a9ca Mon Sep 17 00:00:00 2001 From: Adrian Cole Date: Sun, 27 Nov 2011 18:16:41 -0500 Subject: [PATCH] assigned correct defaults for ninefold template --- providers/ninefold-compute/pom.xml | 2 +- .../ninefold/compute/NinefoldComputePropertiesBuilder.java | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/providers/ninefold-compute/pom.xml b/providers/ninefold-compute/pom.xml index 1ce8128f7c..b92226f7d6 100644 --- a/providers/ninefold-compute/pom.xml +++ b/providers/ninefold-compute/pom.xml @@ -40,7 +40,7 @@ FIXME_CREDENTIAL 575 user:Password01 - user:Password01 + true diff --git a/providers/ninefold-compute/src/main/java/org/jclouds/ninefold/compute/NinefoldComputePropertiesBuilder.java b/providers/ninefold-compute/src/main/java/org/jclouds/ninefold/compute/NinefoldComputePropertiesBuilder.java index 823e1c3df2..a7d59a2219 100644 --- a/providers/ninefold-compute/src/main/java/org/jclouds/ninefold/compute/NinefoldComputePropertiesBuilder.java +++ b/providers/ninefold-compute/src/main/java/org/jclouds/ninefold/compute/NinefoldComputePropertiesBuilder.java @@ -38,6 +38,9 @@ public class NinefoldComputePropertiesBuilder extends CloudStackPropertiesBuilde properties.setProperty(PROPERTY_ISO3166_CODES, "AU-NSW"); properties.setProperty(PROPERTY_ENDPOINT, "https://api.ninefold.com/compute/v1.0/"); properties.setProperty(PROPERTY_API_VERSION, "2.2.8"); + properties.setProperty("ninefold-compute.image-id", "575"); + properties.setProperty("ninefold-compute.image.login-user", "user:Password01"); + properties.setProperty("ninefold-compute.image.authenticate-sudo", "true"); return properties; }