diff options
Diffstat (limited to 'manifests/client/base.pp')
| -rw-r--r-- | manifests/client/base.pp | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/manifests/client/base.pp b/manifests/client/base.pp index 6687d65..4925c2d 100644 --- a/manifests/client/base.pp +++ b/manifests/client/base.pp @@ -1,9 +1,10 @@  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; +    ensure => present, +    mode   => '0644', +    owner  => root, +    group  => 0;    }    # Now collect all server keys | 
