From: Micah Anderson Date: Thu, 22 May 2008 03:48:54 +0000 (+0000) Subject: oops, one more curly brace fix X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=cbcf8596df69094372d0c54d86b1f38a96b55086;p=puppet-backupninja.git oops, one more curly brace fix --- diff --git a/manifests/client.pp b/manifests/client.pp index d7167a5..aa74e29 100644 --- a/manifests/client.pp +++ b/manifests/client.pp @@ -34,24 +34,24 @@ class backupninja::client { ensure => directory } define key - ( $sourcekey='$real_keystore/${name}_id_$real_keytype', - $destination='$real_keydestination', $key_type=$real_keytype, - $key_owner=$real_keyowner, $key_group=$real_keygroup, $installkey=$real_keymanage ) + ( $sourcekey='$real_keystore/${name}_id_$real_keytype', + $destination='$real_keydestination', $key_type=$real_keytype, + $key_owner=$real_keyowner, $key_group=$real_keygroup, $installkey=$real_keymanage ) { case $installkey { true: { - { - file { "$destination": - ensure => directory, - mode => 700, owner => $keyowner, group => $keygroup, - } - file { "$destination/id_$keytype": - source => "$sourcekey", - mode => 0400, owner => $keyowner, group => $keygroup, - require => File["$destination"], - } + file { "$destination": + ensure => directory, + mode => 700, owner => $keyowner, group => $keygroup, + } + file { "$destination/id_$keytype": + source => "$sourcekey", + mode => 0400, owner => $keyowner, group => $keygroup, + require => File["$destination"], } } } } } + +