aboutsummaryrefslogtreecommitdiff
path: root/modules/base_installation/manifests/ssh.pp
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2018-07-14 10:49:21 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2018-07-14 11:20:15 +0200
commit220496056eb730f204f9d21d61d10d41d876c5a1 (patch)
tree8c567596f7cbe61d1c2acc7559284252841ce268 /modules/base_installation/manifests/ssh.pp
parent1b2e270afc9da7bbab85e0d729d317a97cca962f (diff)
downloadPuppet-220496056eb730f204f9d21d61d10d41d876c5a1.tar.gz
Puppet-220496056eb730f204f9d21d61d10d41d876c5a1.tar.zst
Puppet-220496056eb730f204f9d21d61d10d41d876c5a1.zip
Fix package dependencies for base installation
Diffstat (limited to 'modules/base_installation/manifests/ssh.pp')
-rw-r--r--modules/base_installation/manifests/ssh.pp5
1 files changed, 3 insertions, 2 deletions
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 @@
1class base_installation::ssh inherits base_installation { 1class base_installation::ssh inherits base_installation {
2 class { 'ssh::server': 2 class { 'ssh::server':
3 storeconfigs_enabled => false, 3 storeconfigs_enabled => false,
4 options => { 4 options => {
5 'AcceptEnv' => undef, 5 'AcceptEnv' => undef,
6 'X11Forwarding' => 'yes', 6 'X11Forwarding' => 'yes',
7 'PrintMotd' => 'no', 7 'PrintMotd' => 'no',
8 'ChallengeResponseAuthentication' => 'no', 8 'ChallengeResponseAuthentication' => 'no',
9 'Subsystem' => 'sftp /usr/lib/openssh/sftp-server', 9 'Subsystem' => 'sftp /usr/lib/openssh/sftp-server',
10 } 10 },
11 require => Package["openssh"]
11 } 12 }
12 13
13 contain "ssh::server" 14 contain "ssh::server"