ansible-role-puppet_server/tasks/main.yml

12 lines
336 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
2023-09-06 16:02:33 +02:00
when: ansible_distribution_release != "hirsute"
2022-11-07 08:29:21 +01:00
- name: Ensure installation from source
include_tasks: install_from_source.yml
2023-09-06 16:02:33 +02:00
when: ansible_distribution_release == "hirsute"
2022-11-07 08:29:21 +01:00
2022-10-11 09:19:09 +02:00
- name: Ensure configuration
2022-11-07 08:29:21 +01:00
include_tasks: configure.yml