assigned correct defaults for ninefold template

This commit is contained in:
Adrian Cole 2011-11-27 18:16:41 -05:00
parent 9dc71cec3a
commit 424351b1c3
2 changed files with 4 additions and 1 deletions

View File

@ -40,7 +40,7 @@
<test.ninefold-compute.credential>FIXME_CREDENTIAL</test.ninefold-compute.credential>
<test.ninefold-compute.image-id>575</test.ninefold-compute.image-id>
<test.ninefold-compute.image.login-user>user:Password01</test.ninefold-compute.image.login-user>
<test.ninefold-compute.image.authenticate-sudo>user:Password01</test.ninefold-compute.image.authenticate-sudo>
<test.ninefold-compute.image.authenticate-sudo>true</test.ninefold-compute.image.authenticate-sudo>
</properties>
<dependencies>

View File

@ -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;
}