ansible-role-puppet_server/tasks/main.yml

12 lines
423 B
YAML
Raw Normal View History

2022-10-11 09:19:09 +02:00
---
2022-11-07 08:29:21 +01:00
- name: Ensure installation from repository
include_tasks: install_from_repository.yml
when: ansible_distribution_release != "hirsute" and ansible_distribution_release != "jammy"
- name: Ensure installation from source
include_tasks: install_from_source.yml
when: ansible_distribution_release == "hirsute" or ansible_distribution_release == "jammy"
2022-10-11 09:19:09 +02:00
- name: Ensure configuration
2022-11-07 08:29:21 +01:00
include_tasks: configure.yml