> +...
> +Changing password for root.
> +(current) UNIX password:
> +Enter new UNIX password:
> +Retype new UNIX password:
> +~ root@ubuntu:~# exit
> +
> +```
> +
> +- Go back to the DCD, and *make a snapshot* of the storage. Put a
> descriptive name.
> +- Configure jclouds to use this *snapshot*.
> +
> +```java
> +Template template = compute.templateBuilder()
> + .imageNameMatches( "<ideally-unique-snapshot-name>" )
> + .options( new TemplateOptions()
You mean, a separate line like this?
```
compute.templateOptions()
.overrideLoginUser( "root" )
.overrideLoginPassword( "password" );
Template template = compute.templateBuilder().imageNameMatches("---").build();
```
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/145/files#r33445194