Test variable passing in the roles
This commit is contained in:
parent
4549dc4503
commit
cfbd166634
1 changed files with 10 additions and 10 deletions
|
@ -94,15 +94,15 @@
|
|||
tasks:
|
||||
# mailman auto-updates its schema, there can only be one admin user
|
||||
- name: mailman DB user
|
||||
postgresql_user: name=mailmanadmin password={{ lists_dev_mm_db_pass }}
|
||||
postgresql_user: name=mailmanadmin password='thisisatest'
|
||||
- name: hyperkitty DB admin user
|
||||
postgresql_user: name=hyperkittyadmin password={{ lists_dev_hk_db_pass }}
|
||||
postgresql_user: name=hyperkittyadmin password='thisisatest'
|
||||
- name: hyperkitty DB user
|
||||
postgresql_user: name=hyperkittyapp password={{ lists_dev_hk_db_pass }}
|
||||
postgresql_user: name=hyperkittyapp password='thisisatest'
|
||||
- name: kittystore DB admin user
|
||||
postgresql_user: name=kittystoreadmin password={{ lists_dev_ks_db_pass }}
|
||||
postgresql_user: name=kittystoreadmin password='thisisatest'
|
||||
- name: kittystore DB user
|
||||
postgresql_user: name=kittystoreapp password={{ lists_dev_ks_db_pass }}
|
||||
postgresql_user: name=kittystoreapp password='thisisatest'
|
||||
- name: databases creation
|
||||
postgresql_db: name={{ item }} owner="{{ item }}admin" encoding=UTF-8
|
||||
with_items:
|
||||
|
@ -121,11 +121,11 @@
|
|||
roles:
|
||||
- role: mailman
|
||||
mailman_dbserver: localhost
|
||||
mailman_mm_db_pass: "{{ lists_dev_mm_db_pass }}"
|
||||
mailman_hk_admin_db_pass: "{{ lists_dev_hk_db_pass }}"
|
||||
mailman_hk_db_pass: "{{ lists_dev_hk_db_pass }}"
|
||||
mailman_ks_admin_db_pass: "{{ lists_dev_ks_db_pass }}"
|
||||
mailman_ks_db_pass: "{{ lists_dev_ks_db_pass }}"
|
||||
mailman_mm_db_pass: "thisisatest"
|
||||
mailman_hk_admin_db_pass: "thisisatest"
|
||||
mailman_hk_db_pass: "thisisatest"
|
||||
mailman_ks_admin_db_pass: "thisisatest"
|
||||
mailman_ks_db_pass: "thisisatest"
|
||||
- collectd/base
|
||||
|
||||
tasks:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue