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..ac29215
--- /dev/null
+++ b/rt/etc/acl.Oracle
@@ -0,0 +1,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;