blob: b34d783b9d88e624a927596b9981aab6d28127d3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# sshd ~~ roles/sshd/tasks/main.yml
# Create sshd configuration and restart daemon
---
- name: generate sshd configuration
template:
src: templates/sshd_config.j2
dest: /etc/ssh/sshd_config
owner: "0"
group: "0"
mode: "0644"
- name: synchronize keys
include_tasks: sync_keys.yml
- name: restart sshd
service:
name: sshd
state: restarted
- name: check ssh connection
wait_for:
port: 22
delay: 1
state: started
|