12 lines
338 B
YAML
12 lines
338 B
YAML
|
---
|
||
|
- name: Ensure installation in x86 64bits systems
|
||
|
include_tasks: install_x86_64.yml
|
||
|
when: ansible_facts['architecture'] == "x86_64"
|
||
|
|
||
|
- name: Ensure installation in ARM device
|
||
|
include_tasks: install_arm.yml
|
||
|
when: ansible_facts['architecture'] | regex_search("^arm")
|
||
|
|
||
|
- name: Ensure configuration
|
||
|
include_tasks: configure.yml
|