]> git.pld-linux.org Git - packages/otrs.git/commitdiff
- outdated or moved to otrs-paths.patch
authorluzik <luzik@pld-linux.org>
Thu, 3 Nov 2005 09:51:46 +0000 (09:51 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    otrs-PLD-Config.pm -> 1.2
    otrs-apache.patch -> 1.3
    otrs-conf.patch -> 1.3
    otrs-default_conf.patch -> 1.3

otrs-PLD-Config.pm [deleted file]
otrs-apache.patch [deleted file]
otrs-conf.patch [deleted file]
otrs-default_conf.patch [deleted file]

diff --git a/otrs-PLD-Config.pm b/otrs-PLD-Config.pm
deleted file mode 100644 (file)
index 1b81cb0..0000000
+++ /dev/null
@@ -1,129 +0,0 @@
-# --
-# Kernel/Config.pm - Config file for OTRS kernel
-# Copyright (C) 2001-2003 Martin Edenhofer <martin+code@otrs.org>
-# --
-# $Id$
-# --
-# This software comes with ABSOLUTELY NO WARRANTY. For details, see 
-# the enclosed file COPYING for license information (GPL). If you 
-# did not receive this file, see http://www.gnu.org/licenses/gpl.txt.
-# --
-#  Note: 
-#
-#  -->> OTRS does have a lot of config settings. For more settings 
-#       (Notifications, TicketViewAccelerator, TicketNumberGenerator, 
-#       LDAP, PostMaster, Session, Preferences, ...) see 
-#       Kernel/Config/Defaults.pm and copy your wanted lines into "this" 
-#       config file. This file will not be changed on update! 
-#
-# -- 
-package Kernel::Config;
-# --
-sub Load {
-    my $Self = shift;
-    # ---------------------------------------------------- #
-    # ---------------------------------------------------- #
-    #                                                      #
-    #         Start of your own config options!!!          #
-    #                                                      #
-    # ---------------------------------------------------- #
-    # ---------------------------------------------------- #
-
-    # ---------------------------------------------------- #
-    # system data                                          #
-    # ---------------------------------------------------- #
-    # SecureMode
-    # (Enable this so you can't use the installer.pl)
-    $Self->{SecureMode} = 0;
-    # SystemID
-    # (The identify of the system. Each ticket number and
-    # each http session id starts with this number)
-    $Self->{SystemID} = 10; 
-    # TicketHook 
-    # (To set the Ticket identifier. Some people want to 
-    # set this to e. g. 'Call#', 'MyTicket#' or 'TN'.)
-    $Self->{TicketHook} = 'Ticket#';
-    # FQDN
-    # (Full qualified domain name of your system.)
-    $Self->{FQDN} = 'yourhost.example.com';
-    # AdminEmail 
-    # (Email of the system admin.)
-    $Self->{AdminEmail} = 'admin@example.com';
-    # Organization
-    # (If this is anything other than '', then the email will have an
-    # Organization X-Header)
-    $Self->{Organization} = 'Example Company';
-
-    # ---------------------------------------------------- #
-    # database settings                                    #
-    # ---------------------------------------------------- #
-    # DatabaseHost
-    # (The database host.)
-    $Self->{DatabaseHost} = 'localhost';
-    # Database
-    # (The database name.)
-    $Self->{Database} = 'otrs';
-    # DatabaseUser
-    # (The database user.)
-    $Self->{DatabaseUser} = 'otrs';
-    # DatabasePw
-    # (The password of database user.)
-    $Self->{DatabasePw} = 'some-pass';
-    # DatabaseDSN
-    # (The database DSN for MySQL ==> more: "man DBD::mysql")
-    $Self->{DatabaseDSN} = "DBI:mysql:database=$Self->{Database};host=$Self->{DatabaseHost};";
-    # (The database DSN for PostgrSQL ==> more: "man DBD::Pg") 
-#    $Self->{DatabaseDSN} = "DBI:Pg:dbname=$Self->{Database};";
-
-    # (The database DSN for Oracle ==> more: "man DBD::oracle")
-#    $Self->{DatabaseDSN} = "DBI:Oracle:sid=$Self->{Database};host=$Self->{DatabaseHost};port=1521;";
-    # if needed, oracle env settings
-#    $ENV{ORACLE_HOME} = '/opt/ora9/product/9.2';
-#    $ENV{NLS_DATE_FORMAT} = 'YYYY-MM-DD HH24:MI:SS';
-#    $ENV{NLS_LANG} = "german_germany.we8iso8859p15";
-
-    # (The database DSN for DBI:ODBC ==> more: "man DBD::ODBC")
-#    $Self->{DatabaseDSN} = "DBI:ODBC:$Self->{Database}";
-    # If you use ODBC, no database auto detection is possible,
-    # so set the database type here. Possible: mysq,postgresql,oracle,sapdb
-#    $Self->{'Database::Type'} = 'sapdb';
-
-    # ---------------------------------------------------- #
-    # fs root directory
-    # ---------------------------------------------------- #
-    $Self->{Home} = '/usr/share/otrs';
-
-    # **************************************************** #
-    # insert your own config settings "here"               # 
-    # config settings taken from Kernel/Config/Defaults.pm # 
-    # **************************************************** #
-    # $Self->{SessionUseCookie} = 0;
-
-    # **************************************************** #
-
-    # ---------------------------------------------------- #
-    # data inserted by installer                           #
-    # ---------------------------------------------------- #
-    # $DIBI$
-
-    # ---------------------------------------------------- #
-    # ---------------------------------------------------- #
-    #                                                      #
-    #           End of your own config options!!!          #
-    #                                                      #
-    # ---------------------------------------------------- #
-    # ---------------------------------------------------- #
-}
-
-# ---------------------------------------------------- #
-# needed system stuff (don't edit this)                #
-# ---------------------------------------------------- #
-use strict;
-use vars qw(@ISA $VERSION);
-use Kernel::Config::Defaults;
-push (@ISA, 'Kernel::Config::Defaults');
-$VERSION = '$Revision$';
-$VERSION =~ s/^\$.*:\W(.*)\W.+?$/$1/;
-# -----------------------------------------------------#
-
-1;
diff --git a/otrs-apache.patch b/otrs-apache.patch
deleted file mode 100644 (file)
index 5347dfb..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
---- otrs/scripts/apache2-perl-startup.pl.orig  2004-05-10 12:50:38.000000000 +0000
-+++ otrs/scripts/apache2-perl-startup.pl       2004-10-14 06:32:47.118832088 +0000
-@@ -9,8 +9,8 @@
- # --
- # set otrs lib path!
- # --
--use lib "/opt/otrs/";
--use lib "/opt/otrs/Kernel/cpan-lib";
-+use lib "/usr/share/otrs/";
-+use lib "/usr/share/otrs/Kernel/cpan-lib";
- # pull in things we will use in most requests so it is read and compiled
- # exactly once
diff --git a/otrs-conf.patch b/otrs-conf.patch
deleted file mode 100644 (file)
index 4a0dd2d..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
---- otrs/scripts/redhat-rcotrs-config.fix      Mon Mar 15 11:13:09 2004
-+++ otrs/scripts/redhat-rcotrs-config  Mon Mar 15 11:24:00 2004
-@@ -12,7 +12,7 @@
- # 
- # OTRS home (root) directory
- #
--OTRS_ROOT=/opt/otrs
-+OTRS_ROOT=/usr/share/otrs
- # if one of this is false, it will not be checked at the startup!
- # Note: (may be the database isn't on the same host! --> DB_RUNNING=0) 
-@@ -27,7 +27,8 @@
- #
- OTRS_USED_DB=mysqld
- #OTRS_USED_DB_TEST="ps --pid $(cat /var/lib/mysql/$HOST.pid)"
--OTRS_USED_DB_TEST="/sbin/service mysqld status | grep 'is running'"
-+#OTRS_USED_DB_TEST="/sbin/service mysqld status | grep 'is running'"
-+OTRS_USED_DB_TEST="/etc/rc.d/init.d/mysql status | grep 'pid'"
- # --- The Wonderfull redhat's mysql init script does not have a status check.. sucks
- #OTRS_USED_DB=PostgreSQL
- #OTRS_USED_DB_RCSCRIPT="service postgresql status| grep 'is running' > /dev/null 2>&1"
-@@ -37,7 +38,8 @@
- # Used webserver [apache]
- #
- OTRS_USED_WEBSERVER=httpd   #Redhat's default httpd is apache..
--OTRS_USED_WEBSERVER_TEST="/sbin/service httpd status | grep 'is running'"
-+#OTRS_USED_WEBSERVER_TEST="/sbin/service httpd status | grep 'is running'"
-+OTRS_USED_WEBSERVER_TEST="/etc/rc.d/init.d/httpd status | grep 'pid'"
- #
- # cron stuff
diff --git a/otrs-default_conf.patch b/otrs-default_conf.patch
deleted file mode 100644 (file)
index 6bc1746..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
---- otrs/Kernel/Config/Defaults.pm.orig        2004-09-16 08:06:01.000000000 +0000
-+++ otrs/Kernel/Config/Defaults.pm     2004-10-14 06:27:08.016383496 +0000
-@@ -549,7 +549,7 @@
- #    $Self->{'LogModule::SysLog::Charset'} = 'utf-8';
-     # param for LogModule Kernel::System::Log::File (required!)
--    $Self->{'LogModule::LogFile'} = '/tmp/otrs.log';
-+    $Self->{'LogModule::LogFile'} = '/var/log/otrs/otrs.log';
-     # param if the date (yyyy-mm) should be added as suffix to
-     # logfile [0|1]
-@@ -610,7 +610,7 @@
-     # root directory
-     $Self->{Home} = '/opt/otrs';
-     # counter log
--    $Self->{CounterLog} = '<OTRS_CONFIG_Home>/var/log/TicketCounter.log';
-+    $Self->{CounterLog} = '/var/log/otrs/TicketCounter.log';
-     # article fs dir
-     $Self->{ArticleDir} = '<OTRS_CONFIG_Home>/var/article';
-     # stats dir
This page took 0.083647 seconds and 4 git commands to generate.