aboutsummaryrefslogblamecommitdiffstats
path: root/roles/sshd/tasks/main.yml
blob: 096942930c0be16555003b32bc9b5313105af5ba (plain) (tree)























                                              

# 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: "{{ user_root }}"
    group: "{{ group_root }}"
    mode: 0644

- name: restart sshd
  service:
    name: sshd
    state: restarted

- name: check ssh connection
  wait_for:
    port: 22
    delay: 1
    state: started
remember that computers suck.