Matrix Docker Ansible eploy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- ---
-
- - include_tasks: "{{ role_path }}/tasks/server_base/setup_centos.yml"
- when: ansible_distribution == 'CentOS'
-
- - include_tasks: "{{ role_path }}/tasks/server_base/setup_debian.yml"
- when: ansible_os_family == 'Debian'
-
- - name: Ensure Docker is started and autoruns
- service:
- name: docker
- state: started
- enabled: yes
-
- - name: Ensure ntpd is started and autoruns
- service:
- name: "{{ 'ntpd' if ansible_os_family == 'RedHat' else 'ntp' }}"
- state: started
- enabled: yes
|