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