Accounting only needs select, insert, update
authorAlan T. DeKok <aland@freeradius.org>
Tue, 21 Aug 2012 13:33:50 +0000 (15:33 +0200)
committerAlan T. DeKok <aland@freeradius.org>
Tue, 21 Aug 2012 13:36:21 +0000 (15:36 +0200)
Not delete.  Not table mods

raddb/sql/postgresql/admin.sql

index 74994d3..26d08ca 100644 (file)
@@ -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;