~ubuntu-branches/ubuntu/intrepid/otrs2/intrepid-updates

« back to all changes in this revision

Viewing changes to scripts/apache-perl-startup.pl

  • Committer: Package Import Robot
  • Author(s): Torsten Werner
  • Date: 2006-06-20 23:35:00 UTC
  • Revision ID: package-import@ubuntu.com-20060620233500-5qzdidoa53xdigt2
Tags: 2.0.4p01-6
removed the PDF manuals because they will be provided with source code by
a separate package 'otrs2-doc'

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /usr/bin/perl
2
1
use strict;
3
2
 
4
3
# make sure we are in a sane environment.
7
6
# --
8
7
# set otrs lib path!
9
8
# --
10
 
use lib "/opt/otrs/";
11
 
use lib "/opt/otrs/Kernel/cpan-lib";
 
9
use lib "/usr/share/otrs";
 
10
use lib "/usr/share/otrs/Kernel/cpan-lib";
12
11
 
13
12
use Apache::Registry ();       # for things in the "/programs" URL
14
13
 
23
22
#use Apache::DBI ();
24
23
#Apache::DBI->connect_on_init('DBI:mysql:otrs', 'otrs', 'some-pass');
25
24
use DBI ();
26
 
use DBD::mysql ();
 
25
# use DBD::mysql ();
27
26
 
28
27
use Kernel::Config;
29
28