aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-03-16 16:27:24 -0300
committerSilvio Rhatto <rhatto@riseup.net>2014-03-16 16:27:24 -0300
commitb09617ffc00e804bb917fb907a60c45f87d85f7c (patch)
treefa3b0a33489efd8bea8daca7f1ab852a21e91525
parent54ea5ad5ce4291e2321e4ac10075f2242b6fc196 (diff)
downloadpuppet-ikiwiki-b09617ffc00e804bb917fb907a60c45f87d85f7c.tar.gz
puppet-ikiwiki-b09617ffc00e804bb917fb907a60c45f87d85f7c.tar.bz2
Block fix
-rw-r--r--manifests/instance.pp14
1 files changed, 7 insertions, 7 deletions
diff --git a/manifests/instance.pp b/manifests/instance.pp
index 44b4e4d..89aea95 100644
--- a/manifests/instance.pp
+++ b/manifests/instance.pp
@@ -84,14 +84,14 @@ define ikiwiki::instance(
ensure => absent,
}
}
+ }
- if $manage_ssh_key == true {
- ssh_local_key { "ikiwiki-${name}":
- ensure => $ensure,
- owner => $owner,
- group => $owner,
- $source = "puppet:///modules/site_keys/ikiwiki/${name}_id_rsa",
- }
+ if $manage_ssh_key == true {
+ ssh_local_key { "ikiwiki-${name}":
+ ensure => $ensure,
+ owner => $owner,
+ group => $owner,
+ $source = "puppet:///modules/site_keys/ikiwiki/${name}_id_rsa",
}
}
}