ansible-role-postgresql
ansible-role-postgresql copied to clipboard
Ansible Role - PostgreSQL
Before running this role as root, I had a custom role setup official Postgresql 13 repo on AlmaLinux 8.6 since i didn't want to use the default streams provided by...
When running the role, I receive an error on step `TASK [geerlingguy.postgresql : Ensure PostgreSQL database is initialized.] ` **Ansible Information** ``` [root@localhost devel]# ansible --version ansible [core 2.12.2] config...
Fixes bugs #158, #40, #124 allowing for a custom data directory This is a rebased version of #160, and #179
I was able to get the role working on Arch Linux with the following variables: ``` __postgresql_version: "13" __postgresql_data_dir: "/var/lib/postgres/data" __postgresql_bin_path: "/usr/sbin" __postgresql_config_path: "/var/lib/postgres/data" __postgresql_daemon: "postgresql" __postgresql_packages: - postgresql ```...
Please add privilege support, pull request link: https://github.com/geerlingguy/ansible-role-postgresql/pull/209
Given I use the latest ansible-role-postgres (3.4.0) Given I override `postgresql_global_config_options` variable (but not `log_directory` option) When I execute my playbook Then I get the following error: ``` TASK [geerlingguy.postgresql...
Ubuntu 22 was recently released, lets support it. i was not sure though, which __postgresql_daemon format is prefered. Both are available under Ubuntu 22: ``` __postgresql_daemon: "postgresql@{{ postgresql_version }}-main" ```...
I have testing on raspberry with debian 11 but postgis is not installed.
I have installed postgres 9.6 on ubuntu 16 with the aid of your ansible role which is great. One thing I have noticed however is that the database is initialised...