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.yml21
1 files changed, 13 insertions, 8 deletions
diff --git a/roles/sshd/tasks/main.yml b/roles/sshd/tasks/main.yml
index f1af386..b895958 100644
--- a/roles/sshd/tasks/main.yml
+++ b/roles/sshd/tasks/main.yml
@@ -1,22 +1,27 @@
+---
+
+- name: install openssh
+ ansible.builtin.package:
+ name: openssh
+ state: present
+ when: ansible_distribution in ["Archlinux"]
+
- name: generate sshd configuration
- template:
+ ansible.builtin.template:
src: sshd_config.j2
dest: /etc/ssh/sshd_config
owner: 0
group: 0
- mode: 0644
-
-- name: include key synchronization tasks
- include_tasks: synchronize_keys.yml
+ mode: "0644"
- name: enable and restart sshd
- service:
+ ansible.builtin.service:
name: sshd
state: restarted
enabled: true
- name: check ssh connection
- wait_for:
- port: "{{ ansible_port }}"
+ ansible.builtin.wait_for:
+ port: "{{ sshd_listen_port }}"
delay: 1
state: started
remember that computers suck.