summaryrefslogtreecommitdiffstats
path: root/tasks/ssh.yml
diff options
context:
space:
mode:
Diffstat (limited to 'tasks/ssh.yml')
-rw-r--r--tasks/ssh.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/tasks/ssh.yml b/tasks/ssh.yml
new file mode 100644
index 0000000..341a96d
--- /dev/null
+++ b/tasks/ssh.yml
@@ -0,0 +1,20 @@
+---
+- name: Install OpenSSH server
+ apt: pkg={{ packages }}
+ vars:
+ packages:
+ - openssh-server
+
+- name: Create system group 'ssh-login'
+ group: name=ssh-login system=true
+
+- name: Copy sshd_config configuration
+ copy: src=etc/ssh/sshd_config.d/local.conf
+ dest=/etc/ssh/sshd_config.d/local.conf
+ owner=root group=root
+ mode=0644
+ notify:
+ - Restart OpenSSH
+
+- name: Start Openssh
+ service: name=ssh enabled=true state=started