aboutsummaryrefslogtreecommitdiff
path: root/manifests/client
diff options
context:
space:
mode:
authorMichael Moll <kvedulv@kvedulv.de>2013-02-03 00:30:54 +0100
committerMichael Moll <kvedulv@kvedulv.de>2013-02-03 00:30:54 +0100
commit7743650cde95129b4ace3ca14082ae3e47d671b6 (patch)
tree3f4369f8d4e738f074d3cf849683fd5a356ee6e0 /manifests/client
parentef73d094dcd10d9c8729d6b29cefffe962a9e3f4 (diff)
downloadpuppet-sshd-7743650cde95129b4ace3ca14082ae3e47d671b6.tar.gz
puppet-sshd-7743650cde95129b4ace3ca14082ae3e47d671b6.tar.bz2
style fixes
silence puppet-lint
Diffstat (limited to 'manifests/client')
-rw-r--r--manifests/client/base.pp6
1 files changed, 4 insertions, 2 deletions
diff --git a/manifests/client/base.pp b/manifests/client/base.pp
index c2580c1..6687d65 100644
--- a/manifests/client/base.pp
+++ b/manifests/client/base.pp
@@ -1,12 +1,14 @@
class sshd::client::base {
# this is needed because the gid might have changed
file { '/etc/ssh/ssh_known_hosts':
- mode => 0644, owner => root, group => 0;
+ mode => '0644',
+ owner => root,
+ group => 0;
}
# Now collect all server keys
case $sshd::client::shared_ip {
no: { Sshkey <<||>> }
- yes: { Sshkey <<| tag == "fqdn" |>> }
+ yes: { Sshkey <<| tag == fqdn |>> }
}
}