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.pp14
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/base_installation/manifests/ssh.pp b/modules/base_installation/manifests/ssh.pp
new file mode 100644
index 0000000..43769e9
--- /dev/null
+++ b/modules/base_installation/manifests/ssh.pp
@@ -0,0 +1,14 @@
1class base_installation::ssh inherits base_installation {
2 class { 'ssh::server':
3 storeconfigs_enabled => false,
4 options => {
5 'AcceptEnv' => undef,
6 'X11Forwarding' => 'yes',
7 'PrintMotd' => 'no',
8 'ChallengeResponseAuthentication' => 'no',
9 'Subsystem' => 'sftp /usr/lib/openssh/sftp-server',
10 }
11 }
12
13 contain "ssh::server"
14}