X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=rt%2Fetc%2Facl.Oracle;h=c8667c0311c2eef5ad557a32e54817d7f8a9a23f;hp=59d35a028f120323b365de56e957d0a332eac6cb;hb=ded0451e9582df33cae6099a2fb72b4ea25076cf;hpb=0ebeec96313dd7edfca340f01f8fbbbac1f4aa1d 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;