ansible-role-puppet_client/tasks/main.yml

12 lines
338 B
YAML
Raw Normal View History

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
when: ansible_facts['architecture'] | regex_search("^arm")
- name: Ensure configuration
include_tasks: configure.yml