postgres cleanup #74

Merged
erdnaxe merged 4 commits from postgres into master 2021-11-28 11:02:46 +01:00
7 changed files with 12 additions and 3 deletions
Showing only changes of commit a818fd8ed9 - Show all commits

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
...