aboutsummaryrefslogtreecommitdiff
path: root/manifests/client/base.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2013-02-04 21:41:05 +0100
committermh <mh@immerda.ch>2013-02-04 21:41:05 +0100
commit8ecac4219f3d5975fba20316c7d469153d2ca4fc (patch)
tree8fce6dd7c40bb1cfe8ad5996e382538cbf606427 /manifests/client/base.pp
parent576bbf09d8516809d7373dc9b4e725ce2151a463 (diff)
parentad6ecdffe7d8267d1bfa74ece164ee1129ca8d26 (diff)
downloadpuppet-sshd-8ecac4219f3d5975fba20316c7d469153d2ca4fc.tar.gz
puppet-sshd-8ecac4219f3d5975fba20316c7d469153d2ca4fc.tar.bz2
Merge remote-tracking branch 'githubmirror/master'
Diffstat (limited to 'manifests/client/base.pp')
-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 |>> }
}
}