aboutsummaryrefslogtreecommitdiff
path: root/modules/base_installation/manifests/ssh.pp
diff options
context:
space:
mode:
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"