blob: 6b41aa1538b56713965e41d2b271a23c8e03bc68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/*
* admin.sql -- PostgreSQL commands for creating the RADIUS user.
*
* WARNING: You should change 'localhost' and 'radpass'
* to something else. Also update raddb/sql.conf
* with the new RADIUS password.
*
* WARNING: This example file is untested. Use at your own risk.
* Please send any bug fixes to the mailing list.
*
* $Id$
*/
/*
* Create default administrator for RADIUS
*/
CREATE USER radius WITH PASSWORD 'radpass';
/* radius user needs ti clean tables in test env */
GRANT ALL ON ALL TABLES IN SCHEMA public TO radius;
GRANT SELECT, USAGE ON ALL SEQUENCES IN schema public TO radius;
|