blob: 6a622d2f337223584168512b01039cf68777f0fa (
plain) (
tree)
|
|
---
- name: install openssh
ansible.builtin.package:
name: openssh
state: present
when: ansible_distribution in ["Archlinux"]
- name: generate sshd configuration
ansible.builtin.template:
src: sshd_config.j2
dest: "{{ sshd_configuration_file }}"
owner: 0
group: 0
mode: "0644"
register: sshd_result_generate_configuration
- name: lint sshd configuration
ansible.builtin.command: "sshd -tf {{ sshd_configuration_file }}"
register: sshd_result_lint
changed_when: false
- name: restart sshd # noqa: no-handler
ansible.builtin.service:
name: sshd
state: restarted
when: sshd_result_generate_configuration.changed
- name: enable sshd
ansible.builtin.service:
name: sshd
enabled: true
- name: check ssh connection
ansible.builtin.wait_for:
port: "{{ sshd_listen_port }}"
delay: 1
state: started
|