2022-10-11 09:19:08 +02:00
|
|
|
---
|
|
|
|
- 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
|
2022-10-24 09:26:16 +02:00
|
|
|
when: ansible_facts['architecture'] | regex_search("^arm") or ansible_facts['architecture'] == 'aarch64'
|
2022-10-11 09:19:08 +02:00
|
|
|
|
|
|
|
- name: Ensure configuration
|
|
|
|
include_tasks: configure.yml
|