Greg Clough

Results 99 comments of Greg Clough

What do others think about this? I'm not usually a big fan of adding waits, but if we do need it, should it at least be triggered only after certain...

Thanks for taking an interest in the project @t0k4rt. IMHO I do prefer to have the end-result as a file with the full comments as it comes from the default...

Interesting. I'm a bit slammed on other work for the next 3 weeks, but I'll definitely take a look. Thanks.

Needs work: ``` TASK [ANXS.postgresql : PostgreSQL | Update configuration - pt. 1 (pg_hba.conf)] *** fatal: [postgresql-9.4]: FAILED! => {"changed": false, "failed": true, "msg": "AnsibleUndefinedVariable: 'postgresql_pg_hba_passwd_hosts_per_user' is undefined"} fatal: [postgresql-9.5]:...

This appears to be a limitation of the core `postgresql_user` Ansible module: https://docs.ansible.com/ansible/latest/modules/postgresql_user_module.html We literally pass the list of privileges in `postgresql_user_privileges` into `postgresql_user`: ``` - name: PostgreSQL | Update...

Hi @Ichimonji10 , I notice this has stalled... and I'm wondering if there's a fault, or this is just making things safer? I've always run the role as a standard...

Is this related to issue #434

@morgangraphics, can you just use the `postgresql_pg_hba_default` parameter to include what you want? ``` postgresql_pg_hba_default: - comment: "Local postgresql Unix user" type: local database: all user: postgres address: "" method:...

The contents of my `pg_ident.conf` file is: ``` # MAPNAME SYSTEM-USERNAME PG-USERNAME # root is allowed to login as postgres root_as_postgres postgres postgres ``` Which is unnecessary, as `postgres (linux)`...

@elbryan, I'm of two minds about this. It's nice to be able to add custom options if the template is out of date (for example the recently added "data_sync_retry" parameter......