X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FProjets%2FPuppet.git;a=blobdiff_plain;f=modules%2Fbase_installation%2Fmanifests%2Fssh.pp;h=d6317d5b7cf0a79f2bcab6cc59494c694eb19fec;hp=43769e9a5454bfb52bd5531a5b72cd815d76c60f;hb=220496056eb730f204f9d21d61d10d41d876c5a1;hpb=1b2e270afc9da7bbab85e0d729d317a97cca962f 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"