Rename postgresql_server to postgresql

This commit is contained in:
Alexandre Iooss 2021-11-28 10:20:17 +01:00
parent 3c25e64516
commit a818fd8ed9
7 changed files with 12 additions and 3 deletions

View File

@ -1,11 +1,20 @@
#!/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
# Install and configure database servers at Saclay
- hosts: bdd.adm.auro.re
vars:
update_motd:
postgresql: PostgreSQL est déployé.
roles:
- postgresql_server
- postgresql
- update_motd
# Install and configure database servers at OVH
- hosts: bdd-ovh.adm.auro.re
vars:
update_motd:
postgresql: PostgreSQL est déployé.
roles:
- postgresql
- update_motd
...