Example ansible playbook and role to set up postgres database Based on https://blog.apcelent.com/using-ansible-to-set-up-postgresql.html
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

10 righe
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