summaryrefslogtreecommitdiff
path: root/rt/etc/acl.Oracle
blob: ac29215c250dc59f0e34ab862ad5362077a14321 (plain)
1
2
3
4
5
6
7
8
9
10
sub acl {
return (
"CREATE USER ${RT::DatabaseUser} identified by ${RT::DatabasePassword} ".
"default tablespace USERS " .
"temporary tablespace TEMP " .
"quota unlimited on USERS" ,
"grant connect, resource to ${RT::DatabaseUser}"
);
}
1;