commit 80e493da20074792bb682f529cdbfad65892883c parent 283785fe9b2082cabe6361d8156972627f487b95 Author: Antoine A <> Date: Tue, 23 Dec 2025 17:36:49 +0100 cyclos: fix dbconfig Diffstat:
| M | contrib/taler-cyclos-dbconfig | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/contrib/taler-cyclos-dbconfig b/contrib/taler-cyclos-dbconfig @@ -141,7 +141,7 @@ if [ 0 = "$SKIP_INIT" ] || [ 1 = "$FORCE_PERMS" ]; then fi if ! sudo -i -u postgres psql "$DBNAME" <<-EOF GRANT ALL ON SCHEMA cyclos TO "$DBGROUP"; - GRANT SELECT ON ALL TABLES IN SCHEMA cyclos TO "$DBGROUP"; + GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA cyclos TO "$DBGROUP"; EOF then exit_fail "Failed to grant access to '$DBGROUP'."