Example ansible playbook and role to set up postgres database Based on https://blog.apcelent.com/using-ansible-to-set-up-postgresql.html
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ů.

10 řádky
136 B

  1. ---
  2. - name: Create a PostgreSQL DB server
  3. hosts: all
  4. remote_user: postgres
  5. vars_files:
  6. - vars/main.yml
  7. roles:
  8. - createdb