summaryrefslogtreecommitdiff
path: root/src/spec.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/spec.rs')
-rw-r--r--src/spec.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/spec.rs b/src/spec.rs
index fcf6eab..4bd0bb9 100644
--- a/src/spec.rs
+++ b/src/spec.rs
@@ -269,7 +269,7 @@ impl Specification {
let spec = Specification {
name: name.to_string(),
- ssh_keys: ssh_keys,
+ ssh_keys,
rsa_host_key: input.rsa_host_key.clone(),
rsa_host_cert: input.rsa_host_cert.clone(),
dsa_host_key: input.dsa_host_key.clone(),
@@ -284,7 +284,7 @@ impl Specification {
memory_mib: input.memory_mib(config, name)?,
cpus: input.cpus(config, name)?,
generate_host_certificate: gen_cert,
- ca_key: ca_key,
+ ca_key,
};
debug!("specification as with defaults applied: {:#?}", spec);