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