aboutsummaryrefslogtreecommitdiffstats
path: root/roles/sshd/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'roles/sshd/tasks/main.yml')
-rw-r--r--roles/sshd/tasks/main.yml19
1 files changed, 19 insertions, 0 deletions
diff --git a/roles/sshd/tasks/main.yml b/roles/sshd/tasks/main.yml
new file mode 100644
index 0000000..f9131e9
--- /dev/null
+++ b/roles/sshd/tasks/main.yml
@@ -0,0 +1,19 @@
+- name: generate sshd configuration
+ template:
+ src: sshd_config.j2
+ dest: /etc/ssh/sshd_config
+ owner: 0
+ group: 0
+ mode: 0644
+
+- name: enabled and restart sshd
+ service:
+ name: sshd
+ state: restarted
+ enabled: true
+
+- name: check ssh connection
+ wait_for:
+ port: 22
+ delay: 1
+ state: started
remember that computers suck.