2019-11-18 17:11:56 +00:00
|
|
|
---
|
|
|
|
|
2022-07-18 08:22:05 +00:00
|
|
|
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/server_base/setup_redhat.yml"
|
2022-07-18 09:28:39 +00:00
|
|
|
when: ansible_os_family == 'RedHat' and ansible_distribution_major_version | int < 8
|
2021-06-03 16:57:58 +00:00
|
|
|
|
2022-07-18 08:22:05 +00:00
|
|
|
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/server_base/setup_redhat8.yml"
|
2022-07-18 09:28:39 +00:00
|
|
|
when: ansible_os_family == 'RedHat' and ansible_distribution_major_version | int > 7 and ansible_distribution_major_version | int < 30
|
2022-02-09 15:43:01 +00:00
|
|
|
|
2022-07-18 08:22:05 +00:00
|
|
|
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/server_base/setup_fedora.yml"
|
2022-07-18 09:28:39 +00:00
|
|
|
when: ansible_os_family == 'RedHat' and ansible_distribution_major_version | int > 30
|
2019-11-18 17:11:56 +00:00
|
|
|
|
2020-08-27 10:58:35 +00:00
|
|
|
- block:
|
|
|
|
# ansible_lsb is only available if lsb-release is installed.
|
|
|
|
- name: Ensure lsb-release installed
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.apt:
|
2020-08-27 10:58:35 +00:00
|
|
|
name:
|
|
|
|
- lsb-release
|
|
|
|
state: present
|
2022-02-05 20:32:54 +00:00
|
|
|
update_cache: true
|
2020-08-27 10:58:35 +00:00
|
|
|
register: lsb_release_installation_result
|
2020-01-13 11:52:28 +00:00
|
|
|
|
2020-08-27 10:58:35 +00:00
|
|
|
- name: Reread ansible_lsb facts if lsb-release got installed
|
2022-07-18 09:28:39 +00:00
|
|
|
ansible.builtin.setup: filter=ansible_lsb*
|
2020-08-27 10:58:35 +00:00
|
|
|
when: lsb_release_installation_result.changed
|
|
|
|
|
2022-07-18 08:22:05 +00:00
|
|
|
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/server_base/setup_debian.yml"
|
2020-08-27 10:58:35 +00:00
|
|
|
when: (ansible_os_family == 'Debian') and (ansible_lsb.id != 'Raspbian')
|
|
|
|
|
2022-07-18 08:22:05 +00:00
|
|
|
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/server_base/setup_raspbian.yml"
|
2020-08-27 10:58:35 +00:00
|
|
|
when: (ansible_os_family == 'Debian') and (ansible_lsb.id == 'Raspbian')
|
|
|
|
when: ansible_os_family == 'Debian'
|
2019-11-18 17:11:56 +00:00
|
|
|
|
2022-07-18 08:22:05 +00:00
|
|
|
- ansible.builtin.include_tasks: "{{ role_path }}/tasks/server_base/setup_archlinux.yml"
|
2020-03-28 10:39:15 +00:00
|
|
|
when: ansible_distribution == 'Archlinux'
|
|
|
|
|
2019-11-18 17:11:56 +00:00
|
|
|
- name: Ensure Docker is started and autoruns
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.service:
|
2019-11-18 17:11:56 +00:00
|
|
|
name: docker
|
|
|
|
state: started
|
2022-02-05 20:32:54 +00:00
|
|
|
enabled: true
|
2019-11-18 17:11:56 +00:00
|
|
|
|
2020-04-05 06:42:52 +00:00
|
|
|
- name: "Ensure {{ matrix_ntpd_service }} is started and autoruns"
|
2022-07-18 07:39:08 +00:00
|
|
|
ansible.builtin.service:
|
2020-04-05 06:42:52 +00:00
|
|
|
name: "{{ matrix_ntpd_service }}"
|
2019-11-18 17:11:56 +00:00
|
|
|
state: started
|
2022-02-05 20:32:54 +00:00
|
|
|
enabled: true
|