Repos with recipes to deploy some infrastructure services
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- ---
-
- - name: Include OS-specific variables
- include_vars: "{{ ansible_facts.os_family }}.yml"
- tags:
- - always
-
- - include: "repo-{{ ansible_facts.os_family }}.yml"
- when: pdns_install_repo != ""
- tags:
- - install
- - repository
-
- - include: install.yml
- tags:
- - install
-
- - include: inspect.yml
- tags:
- - db
- - mysql
- - sqlite
- - config
-
- - include: database-mysql.yml
- when: "pdns_mysql_databases_credentials | length > 0"
- tags:
- - db
- - mysql
-
- - include: database-sqlite3.yml
- when: "pdns_sqlite_databases_locations | length > 0"
- tags:
- - db
- - sqlite
-
- - include: configure.yml
- tags:
- - config
-
- - name: Start and enable the PowerDNS Authoritative Server service
- service:
- name: "{{ pdns_service_name }}"
- state: started
- enabled: true
- tags:
- - service
-
- - name: Force handlers flush
- meta: flush_handlers
- when: pdns_flush_handlers
- tags:
- - config
- - service
|