You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
495 B
YAML

---
- name: reload systemd
systemd:
daemon_reload: yes
- name: restart ssh
systemd:
state: restarted
name: ssh
- name: reassemble ssh config
make:
chdir: "{{ global_ssh_configuration_environment_directory }}"
target: "{{ global_ssh_configuration_link_name }}/ssh_config"
- name: reassemble sshd config
make:
chdir: "{{ global_ssh_configuration_environment_directory }}"
target: "{{ global_ssh_configuration_link_name }}/sshd_config"
notify: restart ssh