ansible/playbooks/postgresql.yml
2021-11-28 08:48:40 +01:00

12 lines
267 B
YAML
Executable file

#!/usr/bin/env ansible-playbook
---
# Install and configure database servers at Saclay and at OVH
- hosts: bdd.adm.auro.re,bdd-ovh.adm.auro.re
vars:
update_motd:
postgresql: PostgreSQL est déployé.
roles:
- postgresql_server
- update_motd
...