2014-06-07 18:05:13 +02:00
|
|
|
---
|
2018-10-04 21:40:07 +02:00
|
|
|
- name: Set the package state based on how Ansible is installed.
|
|
|
|
set_fact:
|
|
|
|
ansible_package_state: "{{ 'present' if ansible_install_method == 'package' else 'absent' }}"
|
|
|
|
|
2015-01-05 16:04:36 +01:00
|
|
|
# Setup/install tasks.
|
2018-10-04 21:40:07 +02:00
|
|
|
- name: Set up Ansible on RedHat.
|
|
|
|
include_tasks: setup-RedHat.yml
|
2018-10-04 21:15:42 +02:00
|
|
|
when:
|
|
|
|
- ansible_os_family == 'RedHat'
|
|
|
|
- ansible_distribution != 'Fedora'
|
2016-09-18 02:13:09 +02:00
|
|
|
|
2018-10-04 21:40:07 +02:00
|
|
|
- name: Set up Ansible on Fedora.
|
|
|
|
include_tasks: setup-Fedora.yml
|
|
|
|
when: ansible_distribution == 'Fedora'
|
2014-06-07 18:05:13 +02:00
|
|
|
|
2018-10-04 21:40:07 +02:00
|
|
|
- name: Set up Ansible on Ubuntu.
|
|
|
|
include_tasks: setup-Ubuntu.yml
|
|
|
|
when: ansible_distribution == 'Ubuntu'
|
2016-08-31 02:19:02 +02:00
|
|
|
|
2018-10-04 21:40:07 +02:00
|
|
|
- name: Set up Ansible on Debian.
|
|
|
|
include_tasks: setup-Debian.yml
|
|
|
|
when: ansible_distribution == 'Debian'
|
2018-10-04 21:15:42 +02:00
|
|
|
|
2018-10-04 21:40:07 +02:00
|
|
|
- name: Set up Ansible using Pip.
|
|
|
|
include_tasks: setup-pip.yml
|
|
|
|
when: ansible_install_method == 'pip'
|