From 87ab12bd74a90c0d61b0e1cce4d873e790cf24b0 Mon Sep 17 00:00:00 2001 From: "Alan T. DeKok" Date: Tue, 21 Aug 2012 15:33:50 +0200 Subject: [PATCH] Accounting only needs select, insert, update Not delete. Not table mods --- raddb/sql/postgresql/admin.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/raddb/sql/postgresql/admin.sql b/raddb/sql/postgresql/admin.sql index 74994d32f50..26d08cae41c 100644 --- a/raddb/sql/postgresql/admin.sql +++ b/raddb/sql/postgresql/admin.sql @@ -28,5 +28,5 @@ GRANT SELECT ON radusergroup TO radius; /* * The server can write to the accounting and post-auth logging table. */ -GRANT ALL on radacct TO radius; -GRANT ALL on radpostauth TO radius; +GRANT SELECT, INSERT, UPDATE on radacct TO radius; +GRANT SELECT, INSERT, UPDATE on radpostauth TO radius; -- 2.47.3