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.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/roles/sshd/tasks/main.yml b/roles/sshd/tasks/main.yml
index f1af386..d9d14ff 100644
--- a/roles/sshd/tasks/main.yml
+++ b/roles/sshd/tasks/main.yml
@@ -1,5 +1,5 @@
- name: generate sshd configuration
- template:
+ ansible.builtin.template:
src: sshd_config.j2
dest: /etc/ssh/sshd_config
owner: 0
@@ -7,16 +7,16 @@
mode: 0644
- name: include key synchronization tasks
- include_tasks: synchronize_keys.yml
+ ansible.builtin.include_tasks: synchronize_keys.yml
- name: enable and restart sshd
- service:
+ ansible.builtin.service:
name: sshd
state: restarted
enabled: true
- name: check ssh connection
- wait_for:
+ ansible.builtin.wait_for:
port: "{{ ansible_port }}"
delay: 1
state: started
remember that computers suck.