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.Oracle10
1 files changed, 10 insertions, 0 deletions
diff --git a/rt/etc/acl.Oracle b/rt/etc/acl.Oracle
new file mode 100644
index 0000000..c8667c0
--- /dev/null
+++ b/rt/etc/acl.Oracle
@@ -0,0 +1,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;