diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2013-04-11 17:21:26 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2013-04-11 17:21:26 -0300 |
commit | 87fb97266e35bb832389cc9b0dee6fbf159c2145 (patch) | |
tree | eddb545b276aae01b43623df32d890e9eece7bf1 | |
parent | 0a12d5a093c6a962a045df3f581d7a9b00954c43 (diff) | |
download | puppet-ikiwiki-87fb97266e35bb832389cc9b0dee6fbf159c2145.tar.gz puppet-ikiwiki-87fb97266e35bb832389cc9b0dee6fbf159c2145.tar.bz2 |
Minor fixes
-rw-r--r-- | manifests/instance.pp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/manifests/instance.pp b/manifests/instance.pp index c15da13..e563b97 100644 --- a/manifests/instance.pp +++ b/manifests/instance.pp @@ -88,7 +88,7 @@ define ikiwiki::instance($base_url = $domain, $ensure = 'present', $description ensure => $ssh_localhost_auth ? { 'auto' => present, 'fingerprint' => absent, - 'default' => absent, + default => absent, }, } @@ -101,7 +101,7 @@ define ikiwiki::instance($base_url = $domain, $ensure = 'present', $description ensure => $ssh_localhost_auth ? { 'fingerprint' => present, 'auto' => undef, - 'default' => undef, + default => undef, }, } } @@ -113,7 +113,7 @@ define ikiwiki::instance($base_url = $domain, $ensure = 'present', $description ensure => $ssh_localhost_auth ? { 'fingerprint' => present, 'auto' => undef, - 'default' => undef, + default => undef, }, } } @@ -125,7 +125,7 @@ define ikiwiki::instance($base_url = $domain, $ensure = 'present', $description ensure => $ssh_localhost_auth ? { 'fingerprint' => present, 'auto' => undef, - 'default' => undef, + default => undef, }, } } |