From: Alan T. DeKok Date: Tue, 21 Aug 2012 13:33:50 +0000 (+0200) Subject: Accounting only needs select, insert, update X-Git-Tag: release_2_2_0~64 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=87ab12bd74a90c0d61b0e1cce4d873e790cf24b0;p=thirdparty%2Ffreeradius-server.git Accounting only needs select, insert, update Not delete. Not table mods --- 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;