aboutsummaryrefslogtreecommitdiff
path: root/modules/base_installation/manifests/ssh.pp
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2018-07-14 11:35:36 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2018-07-14 11:35:36 +0200
commit3423c1f054e5ca4f365c02acc6b49c9d9782aa65 (patch)
tree8c567596f7cbe61d1c2acc7559284252841ce268 /modules/base_installation/manifests/ssh.pp
parent98418747287dca98cb474f7d4197a94e0665dcb0 (diff)
parent220496056eb730f204f9d21d61d10d41d876c5a1 (diff)
downloadPuppet-3423c1f054e5ca4f365c02acc6b49c9d9782aa65.tar.gz
Puppet-3423c1f054e5ca4f365c02acc6b49c9d9782aa65.tar.zst
Puppet-3423c1f054e5ca4f365c02acc6b49c9d9782aa65.zip
Merge branch 'dev'
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"