Repos with recipes to deploy some infrastructure services
Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- ---
-
- - name: Include OS-specific variables
- include_vars: "{{ ansible_facts.os_family }}.yml"
- tags:
- - always
-
- - include: "repo-{{ ansible_facts.os_family }}.yml"
- when: pdns_rec_install_repo != ""
- tags:
- - install
- - repository
-
- - include: install.yml
- tags:
- - install
-
- - include: configure.yml
- tags:
- - config
-
- - name: Set the status of the PowerDNS Recursor service
- service:
- name: "{{ pdns_rec_service_name }}"
- state: "{{ pdns_rec_service_state }}"
- enabled: "{{ pdns_rec_service_enabled }}"
- tags:
- - service
-
- - name: Force handlers flush
- meta: flush_handlers
- when: pdns_rec_flush_handlers
|