Sha256: 43f91562011a12fac15d38c2d2d2d7990732b83b7fcfd2e125b6dd270b881059
Contents?: true
Size: 839 Bytes
Versions: 26
Compression:
Stored size: 839 Bytes
Contents
# file: postgresql/tasks/main.yml - include_vars: "{{ item }}" with_first_found: - "../vars/{{ ansible_os_family }}.yml" - "../vars/empty.yml" tags: [always] - include: install.yml when: ansible_pkg_mgr == "apt" tags: [postgresql, postgresql-install] - include: install_yum.yml when: ansible_pkg_mgr == "yum" tags: [postgresql, postgresql-install] - include: extensions.yml tags: [postgresql, postgresql-extensions] - include: configure.yml tags: [postgresql, postgresql-configure] - include: users.yml tags: [postgresql, postgresql-users] - include: databases.yml tags: [postgresql, postgresql-databases] - include: users_privileges.yml tags: [postgresql, postgresql-users] - include: monit.yml when: monit_protection is defined and monit_protection == true tags: [postgresql, postgresql-monit]
Version data entries
26 entries across 26 versions & 1 rubygems