2019-11-18 17:11:56 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- include_tasks: "{{ role_path }}/tasks/server_base/setup_centos.yml"
|
|
|
|
when: ansible_distribution == 'CentOS'
|
|
|
|
|
|
|
|
- include_tasks: "{{ role_path }}/tasks/server_base/setup_debian.yml"
|
2020-02-17 20:48:48 +00:00
|
|
|
when: (ansible_os_family == 'Debian') and (ansible_lsb.id != 'Raspbian')
|
2020-01-13 11:52:28 +00:00
|
|
|
|
|
|
|
- include_tasks: "{{ role_path }}/tasks/server_base/setup_raspbian.yml"
|
2020-03-08 18:04:41 +00:00
|
|
|
when: (ansible_os_family == 'Debian') and (ansible_lsb.id == 'Raspbian')
|
2019-11-18 17:11:56 +00:00
|
|
|
|
2020-03-28 10:39:15 +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: yes
|
|
|
|
|
|
|
|
- name: Ensure ntpd is started and autoruns
|
|
|
|
service:
|
2020-03-28 10:39:15 +00:00
|
|
|
name: "{{ 'ntpd' if ansible_os_family == 'RedHat' or ansible_distribution == 'Archlinux' else 'ntp' }}"
|
2019-11-18 17:11:56 +00:00
|
|
|
state: started
|
|
|
|
enabled: yes
|