matrix-docker-ansible-deploy/roles/matrix-base/tasks/server_base/setup.yml

44 lines
1.4 KiB
YAML
Raw Normal View History

2019-11-18 17:11:56 +00:00
---
- include_tasks: "{{ role_path }}/tasks/server_base/setup_centos.yml"
2021-06-03 16:57:58 +00:00
when: ansible_distribution == 'CentOS' and ansible_distribution_major_version < '8'
- include_tasks: "{{ role_path }}/tasks/server_base/setup_centos8.yml"
when: ansible_distribution == 'CentOS' and ansible_distribution_major_version > '7'
2019-11-18 17:11:56 +00:00
- block:
# ansible_lsb is only available if lsb-release is installed.
- name: Ensure lsb-release installed
apt:
name:
- lsb-release
state: present
update_cache: true
register: lsb_release_installation_result
- name: Reread ansible_lsb facts if lsb-release got installed
setup: filter=ansible_lsb*
when: lsb_release_installation_result.changed
- include_tasks: "{{ role_path }}/tasks/server_base/setup_debian.yml"
when: (ansible_os_family == 'Debian') and (ansible_lsb.id != 'Raspbian')
- include_tasks: "{{ role_path }}/tasks/server_base/setup_raspbian.yml"
when: (ansible_os_family == 'Debian') and (ansible_lsb.id == 'Raspbian')
when: ansible_os_family == 'Debian'
2019-11-18 17:11:56 +00:00
- include_tasks: "{{ role_path }}/tasks/server_base/setup_archlinux.yml"
when: ansible_distribution == 'Archlinux'
2019-11-18 17:11:56 +00:00
- name: Ensure Docker is started and autoruns
service:
name: docker
state: started
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"
2019-11-18 17:11:56 +00:00
service:
2020-04-05 06:42:52 +00:00
name: "{{ matrix_ntpd_service }}"
2019-11-18 17:11:56 +00:00
state: started
enabled: true