summaryrefslogtreecommitdiff
path: root/rt/etc/acl.Sybase
diff options
context:
space:
mode:
Diffstat (limited to 'rt/etc/acl.Sybase')
-rw-r--r--rt/etc/acl.Sybase10
1 files changed, 10 insertions, 0 deletions
diff --git a/rt/etc/acl.Sybase b/rt/etc/acl.Sybase
new file mode 100644
index 000000000..7583c02e3
--- /dev/null
+++ b/rt/etc/acl.Sybase
@@ -0,0 +1,10 @@
+
+sub acl {
+ my $db_name = RT->Config->Get('DatabaseName');
+ my $db_user = RT->Config->Get('DatabaseUser');
+ my $db_pass = RT->Config->Get('DatabasePassword');
+
+ return ("SP_ADDLOGIN $db_user, $db_pass, $db_name");
+}
+
+1;