17 lines
No EOL
344 B
YAML
17 lines
No EOL
344 B
YAML
---
|
|
- block:
|
|
- name: Include vars for {{ ansible_os_family }}
|
|
include_vars: "{{ ansible_os_family }}.yml"
|
|
|
|
- name: Install Ansible
|
|
include_tasks: "install.yml"
|
|
when:
|
|
- not ansible_uninstall|bool
|
|
|
|
- name: UnInstall Ansible
|
|
include_tasks: "uninstall.yml"
|
|
when:
|
|
- ansible_uninstall|bool
|
|
|
|
tags:
|
|
- ansible |