diff options
author | intrigeri <intrigeri@boum.org> | 2010-10-04 22:03:49 +0200 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2010-10-04 22:03:49 +0200 |
commit | 456e42b035e53e72e1aebd4689fa1a230fb49226 (patch) | |
tree | 614ddf2782b703d887babfc379fc665e0b0b7723 /manifests/client | |
parent | b9a8b7b3dfa10f71e10b05643e44cbdf20036f4d (diff) | |
download | puppet-sshd-456e42b035e53e72e1aebd4689fa1a230fb49226.tar.gz puppet-sshd-456e42b035e53e72e1aebd4689fa1a230fb49226.tar.bz2 |
Simplify by using the config_file definition.
Diffstat (limited to 'manifests/client')
-rw-r--r-- | manifests/client/base.pp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/manifests/client/base.pp b/manifests/client/base.pp index 33d9f9e..64d4f6f 100644 --- a/manifests/client/base.pp +++ b/manifests/client/base.pp @@ -1,7 +1,6 @@ class sshd::client::base { # this is needed because the gid might have changed - file { '/etc/ssh/ssh_known_hosts': - owner => root, group => 0, mode => 0644; + config_file { '/etc/ssh/ssh_known_hosts': } # Now collect all server keys |