summaryrefslogtreecommitdiff
path: root/rt/etc/acl.Oracle
diff options
context:
space:
mode:
authorivan <ivan>2003-07-15 13:30:43 +0000
committerivan <ivan>2003-07-15 13:30:43 +0000
commitded0451e9582df33cae6099a2fb72b4ea25076cf (patch)
tree62f9855aace4bdb30674156fc0e5d8b758cde0aa /rt/etc/acl.Oracle
parent0ebeec96313dd7edfca340f01f8fbbbac1f4aa1d (diff)
reverting to vendor branch rt 3.0.4, hopefully
Diffstat (limited to 'rt/etc/acl.Oracle')
-rw-r--r--rt/etc/acl.Oracle19
1 files changed, 10 insertions, 9 deletions
diff --git a/rt/etc/acl.Oracle b/rt/etc/acl.Oracle
index 59d35a028..c8667c031 100644
--- a/rt/etc/acl.Oracle
+++ b/rt/etc/acl.Oracle
@@ -1,9 +1,10 @@
-CREATE USER !!DB_RT_USER!! identified by !!DB_RT_PASS!!
-temporary tablespace TEMP
-default tablespace USERS
-quota unlimited on USERS;
-
-grant connect, resource to !!DB_RT_USER!!;
-
-exit;
-
+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;