Make postgresql ident auth work after fixing setuid/setgid again and release as 0.1.
This commit is contained in:
parent
0e012332e1
commit
83aeeea050
2 changed files with 9 additions and 5 deletions
|
@ -43,9 +43,13 @@
|
||||||
(bd-conn
|
(bd-conn
|
||||||
(connect
|
(connect
|
||||||
`((dbname . ,name)
|
`((dbname . ,name)
|
||||||
(host . ,host)
|
,@(if host
|
||||||
(user . ,user)
|
`((host . ,host))
|
||||||
(password . ,pass)))))
|
'())
|
||||||
|
,@(if user
|
||||||
|
`((user . ,user)
|
||||||
|
(password . ,pass))
|
||||||
|
'())))))
|
||||||
|
|
||||||
(define (sql-null->symbol v)
|
(define (sql-null->symbol v)
|
||||||
(if (sql-null? v)
|
(if (sql-null? v)
|
||||||
|
|
|
@ -38,12 +38,12 @@
|
||||||
(chicken format))
|
(chicken format))
|
||||||
|
|
||||||
;; Short banner
|
;; Short banner
|
||||||
(define banner-line "BrmInv 0.0 (c) 2023-2025 Brmlab, z.s.")
|
(define banner-line "BrmInv 0.1 (c) 2023-2025 Brmlab, z.s.")
|
||||||
|
|
||||||
;; The license of this file and of the whole suite.
|
;; The license of this file and of the whole suite.
|
||||||
(define license "ISC License
|
(define license "ISC License
|
||||||
|
|
||||||
Copyright 2023 Brmlab, z.s.
|
Copyright 2023-2025 Brmlab, z.s.
|
||||||
Dominik Pantůček <dominik.pantucek@trustica.cz>
|
Dominik Pantůček <dominik.pantucek@trustica.cz>
|
||||||
|
|
||||||
Permission to use, copy, modify, and/or distribute this software
|
Permission to use, copy, modify, and/or distribute this software
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue