X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=modules%2Fbase_installation%2Fmanifests%2Fssh.pp;h=d6317d5b7cf0a79f2bcab6cc59494c694eb19fec;hb=3423c1f054e5ca4f365c02acc6b49c9d9782aa65;hp=43769e9a5454bfb52bd5531a5b72cd815d76c60f;hpb=7fed35a408b9ec37454169425823785b5fc8978b;p=perso%2FImmae%2FProjets%2FPuppet.git diff --git a/modules/base_installation/manifests/ssh.pp b/modules/base_installation/manifests/ssh.pp index 43769e9..d6317d5 100644 --- a/modules/base_installation/manifests/ssh.pp +++ b/modules/base_installation/manifests/ssh.pp @@ -1,13 +1,14 @@ class base_installation::ssh inherits base_installation { class { 'ssh::server': storeconfigs_enabled => false, - options => { + options => { 'AcceptEnv' => undef, 'X11Forwarding' => 'yes', 'PrintMotd' => 'no', 'ChallengeResponseAuthentication' => 'no', 'Subsystem' => 'sftp /usr/lib/openssh/sftp-server', - } + }, + require => Package["openssh"] } contain "ssh::server"