You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
673 B
33 lines
673 B
- name: install postgres
|
|
include_tasks: install.yml
|
|
when: function == 'install'
|
|
|
|
|
|
- name: install postgres tls enhancements
|
|
include_tasks: install_tls.yml
|
|
when: function == 'install_tls'
|
|
|
|
|
|
- name: postgres maintenance
|
|
include_tasks: maintenance.yml
|
|
when: function == 'maintenance'
|
|
|
|
|
|
- name: add custom database
|
|
include_tasks: add_database.yml
|
|
when: function == 'add_database'
|
|
|
|
|
|
- name: run postgres script
|
|
include_tasks: run_script.yml
|
|
when: function == 'run_script'
|
|
|
|
|
|
- name: run postgres query
|
|
include_tasks: run_query.yml
|
|
when: function == 'run_query'
|
|
|
|
|
|
- name: postgres integration
|
|
include_tasks: integrate.yml
|
|
when: function == 'integrate'
|
|
|