aboutsummaryrefslogblamecommitdiffstats
path: root/roles/sshd/tasks/main.yml
blob: 05221fdfac1f5057b88cb0f28ec62e76df6df5af (plain) (tree)
1
2
3
4
5
6
7
8
9

   





                                             
                                   
                           
                       
                                          

            
                
                                               
 
                               

                                                                    


                                        
                          

                    
                                                   



                          


                            
                           
                                   

                  
---

- 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
remember that computers suck.