summaryrefslogtreecommitdiff
path: root/rt/etc/acl.Oracle
diff options
context:
space:
mode:
Diffstat (limited to 'rt/etc/acl.Oracle')
-rw-r--r--rt/etc/acl.Oracle19
1 files changed, 9 insertions, 10 deletions
diff --git a/rt/etc/acl.Oracle b/rt/etc/acl.Oracle
index c8667c031..59d35a028 100644
--- a/rt/etc/acl.Oracle
+++ b/rt/etc/acl.Oracle
@@ -1,10 +1,9 @@
-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;
+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;
+