Search Criteria
Package Details: authpgsql 0.6.1-1
Git Clone URL: | https://aur.archlinux.org/authpgsql.git (read-only, click to copy) |
---|---|
Package Base: | authpgsql |
Description: | A NSS library to authenticate users against postgresql. |
Upstream URL: | https://sourceforge.net/projects/authpgsql/ |
Licenses: | |
Submitter: | None |
Maintainer: | fukawi2 |
Last Packager: | fukawi2 |
Votes: | 1 |
Popularity: | 0.000000 |
First Submitted: | 2009-03-10 16:31 |
Last Updated: | 2018-05-17 01:51 |
Latest Comments
fukawi2 commented on 2013-04-18 07:09
Adopted and updated.
Anonymous comment on 2012-03-13 19:49
Droping ownership.
Anonymous comment on 2010-10-24 05:24
Hi.
I have no idea.
Sorry I am not developer of this sw,
and I have no contact with upstream.
I just did PKGBUILD - some time ago.
Regards, M.
Anonymous comment on 2010-10-23 19:57
Hi,
I had some troubles with authpgsql some people where in the group 0 (root). The Reason is an SQL Statment that (I don't no why) doesn't transfer the value of the gid field.
The following patch fixed it for me:
--- group.c.org 2010-10-23 21:50:31.658731000 +0200
+++ group.c 2010-10-23 21:50:41.822622000 +0200
@@ -28,7 +28,7 @@ static enum nss_status cursor_begin() {
_nss_pgsql_log(LOG_DEBUG,"cursor begin");
#endif
snprintf(query,BUFFER,
- "DECLARE grpcursor BINARY CURSOR FOR "
+ "DECLARE grpcursor CURSOR FOR "
"select %s,%s,%s,%s from %s",
GR_NAME_FIELD,GR_PASSWD_FIELD,
GR_GID_FIELD,GR_MEM_FIELD,GROUP_TABLE);