[otrs-cvs] otrs/bin otrs.CheckModules.pl, 1.49, 1.50 otrs.FillDB.pl, 1.19, 1.20 otrs.CryptPassword.pl, 1.10, 1.11 otrs.CreateApacheStartupFile.pl, 1.4, 1.5 otrs.CleanupTicketMetadata.pl, 1.8, 1.9 otrs.RebuildConfig.pl, 1.19, 1.20 otrs.ExportStatsToOPM.pl, 1.10, 1.11 otrs.AddTicketType.pl, 1.8, 1.9 otrs.SetPermissions.pl, 1.9, 1.10 otrs.AddQueue2StdResponse.pl, 1.4, 1.5 otrs.PendingJobs.pl, 1.13, 1.14 otrs.PostMaster.pl, 1.10, 1.11 otrs.AddUser.pl, 1.8, 1.9 otrs.AddRole.pl, 1.9, 1.10 otrs.AddQueue.pl, 1.11, 1.12 otrs.RefreshSMIMEKeys.pl, 1.12, 1.13 otrs.CheckDB.pl, 1.10, 1.11 otrs.WebserviceConfig.pl, 1.11, 1.12 otrs.UnlockTickets.pl, 1.13, 1.14 otrs.UnitTest.pl, 1.11, 1.12 otrs.PackageManager.pl, 1.15, 1.16 otrs.AddUser2Role.pl, 1.10, 1.11 otrs.PostMasterDaemon.pl, 1.7, 1.8 otrs.ArticleStorageSwitch.pl, 1.21, 1.22 otrs.DeleteSessionIDs.pl, 1.11, 1.12 otrs.CleanUp.pl,
"CVS commits notifications of OTRS.org" <[email protected]>
| Newsgroups | gmane.comp.otrs.cvs |
|---|---|
| Message-ID | <[email protected]> |
Comments:
Update of /home/cvs/otrs/bin
In directory lancelot:/tmp/cvs-serv17753/bin
Modified Files:
otrs.CheckModules.pl otrs.FillDB.pl otrs.CryptPassword.pl
otrs.CreateApacheStartupFile.pl otrs.CleanupTicketMetadata.pl
otrs.RebuildConfig.pl otrs.ExportStatsToOPM.pl
otrs.AddTicketType.pl otrs.SetPermissions.pl
otrs.AddQueue2StdResponse.pl otrs.PendingJobs.pl
otrs.PostMaster.pl otrs.AddUser.pl otrs.AddRole.pl
otrs.AddQueue.pl otrs.RefreshSMIMEKeys.pl otrs.CheckDB.pl
otrs.WebserviceConfig.pl otrs.UnlockTickets.pl
otrs.UnitTest.pl otrs.PackageManager.pl otrs.AddUser2Role.pl
otrs.PostMasterDaemon.pl otrs.ArticleStorageSwitch.pl
otrs.DeleteSessionIDs.pl otrs.CleanUp.pl otrs.xml2sql.pl
otrs.CleanTicketArchive.pl otrs.AddRole2Group.pl
otrs.CheckSum.pl otrs.Scheduler4win.pl
otrs.RebuildEscalationIndex.pl otrs.AddCustomerUser.pl
otrs.DeleteCache.pl otrs.RebuildTicketIndex.pl
otrs.AddSystemAddress.pl otrs.AddService.pl
otrs.GenericAgent.pl otrs.MarkTicketAsSeen.pl
otrs.LoaderCache.pl otrs.RebuildFulltextIndex.pl
otrs.CleanTicketIndex.pl otrs.GetTicketThread.pl
otrs.CreateTranslationFile.pl otrs.SetPassword.pl
otrs.AddGroup.pl otrs.TicketDelete.pl otrs.PostMasterClient.pl
otrs.Scheduler.pl otrs.Scheduler4winInstaller.pl
otrs.AddUser2Group.pl otrs.PostMasterMailbox.pl
otrs.GenericInterfaceDebugRead.pl otrs.GetConfig.pl
Log Message:
Removed -w flag from shebang line. It also triggers warnings from external modules which do not support "use warnings" yet. In OTRS we use this pragma everywhere.
>From perlrun: "This switch really just enables the global $^W variable; normally, the lexically scoped use warnings pragma is preferred."
Author: mg
Index: otrs.CheckModules.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.CheckModules.pl,v
retrieving revision 1.49
retrieving revision 1.50
diff -2 -u -d -r1.49 -r1.50
--- otrs.CheckModules.pl 15 Jan 2013 21:06:58 -0000 1.49
+++ otrs.CheckModules.pl 22 Jan 2013 10:14:09 -0000 1.50
@@ -1,3 +1,3 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.CheckModules.pl - to check needed cpan framework modules
Author: mg
Index: otrs.FillDB.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.FillDB.pl,v
retrieving revision 1.19
retrieving revision 1.20
diff -2 -u -d -r1.19 -r1.20
--- otrs.FillDB.pl 20 Nov 2012 16:03:39 -0000 1.19
+++ otrs.FillDB.pl 22 Jan 2013 10:14:09 -0000 1.20
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.FillDB.pl - fill db with demo data
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
Author: mg
Index: otrs.CryptPassword.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.CryptPassword.pl,v
retrieving revision 1.10
retrieving revision 1.11
diff -2 -u -d -r1.10 -r1.11
--- otrs.CryptPassword.pl 20 Nov 2012 16:03:23 -0000 1.10
+++ otrs.CryptPassword.pl 22 Jan 2013 10:14:09 -0000 1.11
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.CryptPassword.pl - to crypt database password for Kernel/Config.pm
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -55,5 +55,5 @@
print
"bin/otrs.CryptPassword.pl <Revision $VERSION> - to crypt database password for Kernel/Config.pm\n";
-print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
if ( !$Password ) {
Author: mg
Index: otrs.CreateApacheStartupFile.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.CreateApacheStartupFile.pl,v
retrieving revision 1.4
retrieving revision 1.5
diff -2 -u -d -r1.4 -r1.5
--- otrs.CreateApacheStartupFile.pl 13 Dec 2012 14:40:32 -0000 1.4
+++ otrs.CreateApacheStartupFile.pl 22 Jan 2013 10:14:09 -0000 1.5
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.CreateApacheStartupFile.pl - create new translation file
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -83,8 +83,8 @@
#
my $Content = <<"EOF";
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# -\-
# scripts/apache-perl-startup.pl - to load the modules if mod_perl is used
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# -\-
# This program is free software; you can redistribute it and/or modify
Author: mg
Index: otrs.CleanupTicketMetadata.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.CleanupTicketMetadata.pl,v
retrieving revision 1.8
retrieving revision 1.9
diff -2 -u -d -r1.8 -r1.9
--- otrs.CleanupTicketMetadata.pl 20 Nov 2012 16:03:15 -0000 1.8
+++ otrs.CleanupTicketMetadata.pl 22 Jan 2013 10:14:09 -0000 1.9
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.CleanupTicketMetadata.pl - remove unneeded ticket meta data
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
Author: mg
Index: otrs.RebuildConfig.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.RebuildConfig.pl,v
retrieving revision 1.19
retrieving revision 1.20
diff -2 -u -d -r1.19 -r1.20
--- otrs.RebuildConfig.pl 20 Nov 2012 16:04:03 -0000 1.19
+++ otrs.RebuildConfig.pl 22 Jan 2013 10:14:09 -0000 1.20
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.RebuildConfig.pl - rebuild config
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -61,5 +61,5 @@
# ---
print "otrs.RebuildConfig.pl <Revision $VERSION> - OTRS rebuild default config\n";
-print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
if ( $CommonObject{SysConfigObject}->WriteDefault() ) {
exit;
Author: mg
Index: otrs.ExportStatsToOPM.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.ExportStatsToOPM.pl,v
retrieving revision 1.10
retrieving revision 1.11
diff -2 -u -d -r1.10 -r1.11
--- otrs.ExportStatsToOPM.pl 20 Nov 2012 16:03:32 -0000 1.10
+++ otrs.ExportStatsToOPM.pl 22 Jan 2013 10:14:09 -0000 1.11
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.ExportStatsToOPM.pl - export all stats of a system and create a package for the package manager
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -85,5 +85,5 @@
print
"otrs.ExportStatsToOPM.pl <Revision $VERSION> - export all stats of a system and create a package for the package manager\n";
- print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+ print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
print "usage: otrs.ExportStatsToOPM.pl [-n <PACKAGE_NAME>] [-v <PACKAGE_VERSION>]\n";
print
Author: mg
Index: otrs.AddTicketType.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.AddTicketType.pl,v
retrieving revision 1.8
retrieving revision 1.9
diff -2 -u -d -r1.8 -r1.9
--- otrs.AddTicketType.pl 20 Nov 2012 16:02:53 -0000 1.8
+++ otrs.AddTicketType.pl 22 Jan 2013 10:14:09 -0000 1.9
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.AddTicketType.pl - add new Ticket Types
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
Author: mg
Index: otrs.SetPermissions.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.SetPermissions.pl,v
retrieving revision 1.9
retrieving revision 1.10
diff -2 -u -d -r1.9 -r1.10
--- otrs.SetPermissions.pl 20 Nov 2012 16:04:18 -0000 1.9
+++ otrs.SetPermissions.pl 22 Jan 2013 10:14:09 -0000 1.10
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.SetPermissions.pl - to set the otrs permissions
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -38,5 +38,5 @@
print "bin/otrs.SetPermissions.pl <$VERSION> - set OTRS file permissions\n";
-print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
my $Secure = 0;
Author: mg
Index: otrs.AddQueue2StdResponse.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.AddQueue2StdResponse.pl,v
retrieving revision 1.4
retrieving revision 1.5
diff -2 -u -d -r1.4 -r1.5
--- otrs.AddQueue2StdResponse.pl 20 Nov 2012 16:02:37 -0000 1.4
+++ otrs.AddQueue2StdResponse.pl 22 Jan 2013 10:14:09 -0000 1.5
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.AddQueue2StdResponse.pl.pl - Assign Roles to Groups from CLI
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
Author: mg
Index: otrs.PendingJobs.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.PendingJobs.pl,v
retrieving revision 1.13
retrieving revision 1.14
diff -2 -u -d -r1.13 -r1.14
--- otrs.PendingJobs.pl 20 Nov 2012 16:03:56 -0000 1.13
+++ otrs.PendingJobs.pl 22 Jan 2013 10:14:09 -0000 1.14
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.PendingJobs.pl - check pending tickets
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -64,5 +64,5 @@
my $Command = shift || '--help';
print "otrs.PendingJobs.pl <Revision $VERSION> - check pending tickets\n";
-print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
# do ticket auto jobs
Author: mg
Index: otrs.PostMaster.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.PostMaster.pl,v
retrieving revision 1.10
retrieving revision 1.11
diff -2 -u -d -r1.10 -r1.11
--- otrs.PostMaster.pl 20 Nov 2012 16:03:58 -0000 1.10
+++ otrs.PostMaster.pl 22 Jan 2013 10:14:09 -0000 1.11
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.PostMaster.pl - the global eMail handle for email2db
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -53,5 +53,5 @@
if ( $Opts{h} ) {
print "otrs.PostMaster.pl <Revision $VERSION> - OTRS cmd postmaster\n";
- print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+ print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
print
"usage: otrs.PostMaster.pl -q <QUEUE> -t <TRUSTED> (default is trusted, use '-t 0' to disable trusted mode)\n";
Author: mg
Index: otrs.AddUser.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.AddUser.pl,v
retrieving revision 1.8
retrieving revision 1.9
diff -2 -u -d -r1.8 -r1.9
--- otrs.AddUser.pl 20 Nov 2012 16:02:54 -0000 1.8
+++ otrs.AddUser.pl 22 Jan 2013 10:14:09 -0000 1.9
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.AddUser.pl - Add User from CLI
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
Author: mg
Index: otrs.AddRole.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.AddRole.pl,v
retrieving revision 1.9
retrieving revision 1.10
diff -2 -u -d -r1.9 -r1.10
--- otrs.AddRole.pl 20 Nov 2012 16:02:39 -0000 1.9
+++ otrs.AddRole.pl 22 Jan 2013 10:14:09 -0000 1.10
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.AddRole.pl - add new system roles
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
Author: mg
Index: otrs.AddQueue.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.AddQueue.pl,v
retrieving revision 1.11
retrieving revision 1.12
diff -2 -u -d -r1.11 -r1.12
--- otrs.AddQueue.pl 20 Nov 2012 16:02:35 -0000 1.11
+++ otrs.AddQueue.pl 22 Jan 2013 10:14:09 -0000 1.12
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.AddQueue.pl - Add Queue from CLI
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -51,5 +51,5 @@
if ( $Opts{h} ) {
print STDOUT "otrs.AddQueue.pl <Revision $VERSION> - add new queue\n";
- print STDOUT "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+ print STDOUT "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
print STDOUT "usage: otrs.AddQueue.pl -n <NAME> -g <GROUP> [-s <SYSTEMADDRESSID> -S \n";
print STDOUT
Author: mg
Index: otrs.RefreshSMIMEKeys.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.RefreshSMIMEKeys.pl,v
retrieving revision 1.12
retrieving revision 1.13
diff -2 -u -d -r1.12 -r1.13
--- otrs.RefreshSMIMEKeys.pl 20 Nov 2012 16:04:07 -0000 1.12
+++ otrs.RefreshSMIMEKeys.pl 22 Jan 2013 10:14:09 -0000 1.13
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.RefreshSMIMEKeys.pl - normalize SMIME private secrets and rename all certificates to the correct hash
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -51,5 +51,5 @@
print "otrs.RefreshSMIMEKeys.pl <Revision $VERSION> - fix SMIME certificates private keys and"
. " secrets filenames\n";
- print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+ print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
print "usage: otrs.RefreshSMIMEKeys.pl -d <DETAILS> (short|long) [-f (force to execute even"
. " if SMIME is not enabled in SysConfig)] \n";
Author: mg
Index: otrs.CheckDB.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.CheckDB.pl,v
retrieving revision 1.10
retrieving revision 1.11
diff -2 -u -d -r1.10 -r1.11
--- otrs.CheckDB.pl 14 Jan 2013 08:44:49 -0000 1.10
+++ otrs.CheckDB.pl 22 Jan 2013 10:14:09 -0000 1.11
@@ -1,3 +1,3 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.CheckDB.pl - to check the db access
Author: mg
Index: otrs.WebserviceConfig.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.WebserviceConfig.pl,v
retrieving revision 1.11
retrieving revision 1.12
diff -2 -u -d -r1.11 -r1.12
--- otrs.WebserviceConfig.pl 17 Jan 2013 03:39:20 -0000 1.11
+++ otrs.WebserviceConfig.pl 22 Jan 2013 10:14:09 -0000 1.12
@@ -1,3 +1,3 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.WebserviceConfig.pl - script to read/write/list webservice config
Author: mg
Index: otrs.UnlockTickets.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.UnlockTickets.pl,v
retrieving revision 1.13
retrieving revision 1.14
diff -2 -u -d -r1.13 -r1.14
--- otrs.UnlockTickets.pl 20 Nov 2012 16:04:23 -0000 1.13
+++ otrs.UnlockTickets.pl 22 Jan 2013 10:14:09 -0000 1.14
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.UnlockTickets.pl - to unlock tickets
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -74,5 +74,5 @@
my $Command = shift || '--help';
print "otrs.UnlockTickets.pl <Revision $VERSION> - unlock tickets\n";
-print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
# unlock all tickets
Author: mg
Index: otrs.UnitTest.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.UnitTest.pl,v
retrieving revision 1.11
retrieving revision 1.12
diff -2 -u -d -r1.11 -r1.12
--- otrs.UnitTest.pl 20 Nov 2012 16:04:21 -0000 1.11
+++ otrs.UnitTest.pl 22 Jan 2013 10:14:09 -0000 1.12
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.UnitTest.pl - the global test handle
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -49,5 +49,5 @@
if ( $Opts{h} ) {
print "otrs.UnitTest.pl <Revision $VERSION> - OTRS test handle\n";
- print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+ print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
print
"usage: otrs.UnitTest.pl [-n Name e.g. Ticket or Queue, or both Ticket:Queue] [-d Directory] [-o ASCII|HTML|XML] [-p PRODUCT]\n";
Author: mg
Index: otrs.PackageManager.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.PackageManager.pl,v
retrieving revision 1.15
retrieving revision 1.16
diff -2 -u -d -r1.15 -r1.16
--- otrs.PackageManager.pl 20 Nov 2012 16:03:54 -0000 1.15
+++ otrs.PackageManager.pl 22 Jan 2013 10:14:09 -0000 1.16
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.PackageManager.pl - otrs package manager cmd version
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -85,5 +85,5 @@
if ( $Opts{h} ) {
print "otrs.PackageManager.pl <Revision $VERSION> - OTRS Package Manager\n";
- print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+ print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
print
"usage: otrs.PackageManager.pl -a list|install|upgrade|uninstall|reinstall|list-repository|file|build|index \n";
Author: mg
Index: otrs.AddUser2Role.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.AddUser2Role.pl,v
retrieving revision 1.10
retrieving revision 1.11
diff -2 -u -d -r1.10 -r1.11
--- otrs.AddUser2Role.pl 20 Nov 2012 16:02:58 -0000 1.10
+++ otrs.AddUser2Role.pl 22 Jan 2013 10:14:09 -0000 1.11
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.AddUser2Role.pl - Assign users to Roles from CLI
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -50,5 +50,5 @@
if ( !$Opts{r} || !$Opts{u} ) {
print "$0 <Revision $VERSION> - assign Users to Roles\n";
- print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+ print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
print "usage: $FindBin::Script -u <USER> -r <ROLE> \n";
exit 1;
Author: mg
Index: otrs.PostMasterDaemon.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.PostMasterDaemon.pl,v
retrieving revision 1.7
retrieving revision 1.8
diff -2 -u -d -r1.7 -r1.8
--- otrs.PostMasterDaemon.pl 12 Nov 2012 13:00:58 -0000 1.7
+++ otrs.PostMasterDaemon.pl 22 Jan 2013 10:14:09 -0000 1.8
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.PostMasterDaemon.pl - the daemon for the PostMasterClient.pl client
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
Author: mg
Index: otrs.ArticleStorageSwitch.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.ArticleStorageSwitch.pl,v
retrieving revision 1.21
retrieving revision 1.22
diff -2 -u -d -r1.21 -r1.22
--- otrs.ArticleStorageSwitch.pl 20 Nov 2012 16:02:59 -0000 1.21
+++ otrs.ArticleStorageSwitch.pl 22 Jan 2013 10:14:09 -0000 1.22
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# otrs.ArticleStorageSwitch.pl - to move stored attachments from one backend to other
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -49,5 +49,5 @@
if ( $Opts{h} ) {
print "otrs.ArticleStorageSwitch.pl <Revision $VERSION> - to move storage content\n";
- print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+ print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
print
"usage: otrs.ArticleStorageSwitch.pl -s ArticleStorageDB -d ArticleStorageFS [-c <JUST_SELECT_WHERE_CLOSE_DATE_IS_BEFORE> e. g. -c '2011-06-29 14:00:00' -C <JUST_SELECT_WHERE_CLOSE_IS_OLDER_IN_DAYS] e. g. -C '5' [-f force]\n";
Author: mg
Index: otrs.DeleteSessionIDs.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.DeleteSessionIDs.pl,v
retrieving revision 1.11
retrieving revision 1.12
diff -2 -u -d -r1.11 -r1.12
--- otrs.DeleteSessionIDs.pl 20 Nov 2012 16:03:26 -0000 1.11
+++ otrs.DeleteSessionIDs.pl 22 Jan 2013 10:14:09 -0000 1.12
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.DeleteSessionIDs.pl - to delete all existing, idle or expired session ids
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -58,5 +58,5 @@
my $Command = shift || '--help';
print "otrs.DeleteSessionIDs.pl <Revision $VERSION> - delete all existing or expired session ids\n";
-print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
# show/delete all session ids
Author: mg
Index: otrs.CleanUp.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.CleanUp.pl,v
retrieving revision 1.9
retrieving revision 1.10
diff -2 -u -d -r1.9 -r1.10
--- otrs.CleanUp.pl 20 Nov 2012 16:03:12 -0000 1.9
+++ otrs.CleanUp.pl 22 Jan 2013 10:14:09 -0000 1.10
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.CleanUp.pl - to cleanup, remove used tmp data of ipc, database or fs
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -48,5 +48,5 @@
if ( $Opts{'h'} ) {
print "otrs.CleanUp.pl <Revision $VERSION> - OTRS cleanup\n";
- print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+ print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
print "usage: otrs.CleanUp.pl \n";
exit 1;
Author: mg
Index: otrs.xml2sql.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.xml2sql.pl,v
retrieving revision 1.12
retrieving revision 1.13
diff -2 -u -d -r1.12 -r1.13
--- otrs.xml2sql.pl 20 Nov 2012 16:04:28 -0000 1.12
+++ otrs.xml2sql.pl 22 Jan 2013 10:14:09 -0000 1.13
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.xml2sql.pl - a xml 2 sql processor
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
Author: mg
Index: otrs.CleanTicketArchive.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.CleanTicketArchive.pl,v
retrieving revision 1.9
retrieving revision 1.10
diff -2 -u -d -r1.9 -r1.10
--- otrs.CleanTicketArchive.pl 20 Nov 2012 16:03:08 -0000 1.9
+++ otrs.CleanTicketArchive.pl 22 Jan 2013 10:14:09 -0000 1.10
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# otrs.CleanTicketArchive.pl - Clean the ticket archive flag
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -57,5 +57,5 @@
# print header
print STDOUT "otrs.CleanTicketArchive.pl <Revision $VERSION> - clean ticket archive flag\n";
-print STDOUT "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+print STDOUT "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
# check if archive system is activated
Author: mg
Index: otrs.AddRole2Group.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.AddRole2Group.pl,v
retrieving revision 1.9
retrieving revision 1.10
diff -2 -u -d -r1.9 -r1.10
--- otrs.AddRole2Group.pl 20 Nov 2012 16:02:42 -0000 1.9
+++ otrs.AddRole2Group.pl 22 Jan 2013 10:14:09 -0000 1.10
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.AddRole2Group.pl - Assign Roles to Groups from CLI
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -49,5 +49,5 @@
if ( $Opts{h} ) {
print "otrs.AddRole2Group.pl <Revision $VERSION> - assign Roles to Groups\n";
- print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+ print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
print
"usage: otrs.AddRole2Group.pl -g <GROUP> -r <ROLE> [-R<READ> -M<MOVE_INTO> -C<CREATE> -N<NOTE> -O<OWNER> -P<PRIORITY> -W<RW>] \n";
Author: mg
Index: otrs.CheckSum.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.CheckSum.pl,v
retrieving revision 1.15
retrieving revision 1.16
diff -2 -u -d -r1.15 -r1.16
--- otrs.CheckSum.pl 11 Dec 2012 16:25:56 -0000 1.15
+++ otrs.CheckSum.pl 22 Jan 2013 10:14:09 -0000 1.16
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.CheckSum.pl - a tool to compare changes in a installation
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -48,5 +48,5 @@
if ( exists $Opts{h} || !keys %Opts ) {
print "otrs.CheckSum.pl <Revision $VERSION> - OTRS check sum\n";
- print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+ print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
print
"usage: otrs.CheckSum.pl -a create|compare [-b /path/to/ARCHIVE] [-d /path/to/framework]\n";
Author: mg
Index: otrs.Scheduler4win.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.Scheduler4win.pl,v
retrieving revision 1.27
retrieving revision 1.28
diff -2 -u -d -r1.27 -r1.28
--- otrs.Scheduler4win.pl 20 Nov 2012 16:04:14 -0000 1.27
+++ otrs.Scheduler4win.pl 22 Jan 2013 10:14:09 -0000 1.28
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# otrs.Scheduler4win.pl - provides Scheduler Daemon control for Microsoft Windows OS
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -277,5 +277,5 @@
sub _help {
print "otrs.Scheduler4win.pl <Revision $VERSION> - OTRS Scheduler Daemon\n";
- print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+ print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
print "usage: otrs.Scheduler4win.pl -a <ACTION> (start|stop|status|reload) [-f force]\n";
}
Author: mg
Index: otrs.RebuildEscalationIndex.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.RebuildEscalationIndex.pl,v
retrieving revision 1.14
retrieving revision 1.15
diff -2 -u -d -r1.14 -r1.15
--- otrs.RebuildEscalationIndex.pl 20 Nov 2012 16:04:04 -0000 1.14
+++ otrs.RebuildEscalationIndex.pl 22 Jan 2013 10:14:09 -0000 1.15
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# otrs.RebuildEscalationIndex.pl - rebuild escalation index
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -49,5 +49,5 @@
if ( $Opts{h} ) {
print "otrs.RebuildEscalationIndex.pl <Revision $VERSION> - rebuild escalation index\n";
- print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+ print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
print "usage: otrs.RebuildEscalationIndex.pl\n";
exit 1;
Author: mg
Index: otrs.AddCustomerUser.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.AddCustomerUser.pl,v
retrieving revision 1.10
retrieving revision 1.11
diff -2 -u -d -r1.10 -r1.11
--- otrs.AddCustomerUser.pl 20 Nov 2012 16:02:28 -0000 1.10
+++ otrs.AddCustomerUser.pl 22 Jan 2013 10:14:09 -0000 1.11
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.AddCustomerUser.pl - Add User from CLI
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
Author: mg
Index: otrs.DeleteCache.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.DeleteCache.pl,v
retrieving revision 1.11
retrieving revision 1.12
diff -2 -u -d -r1.11 -r1.12
--- otrs.DeleteCache.pl 20 Nov 2012 16:03:25 -0000 1.11
+++ otrs.DeleteCache.pl 22 Jan 2013 10:14:09 -0000 1.12
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.DeleteCache.pl - delete all caches
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -56,5 +56,5 @@
if ( $Opts{h} ) {
print "otrs.DeleteCache.pl <Revision $VERSION> - delete OTRS cache\n";
- print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+ print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
print "usage: otrs.DeleteCache.pl [--expired] [--type TYPE]\n";
exit 1;
Author: mg
Index: otrs.RebuildTicketIndex.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.RebuildTicketIndex.pl,v
retrieving revision 1.8
retrieving revision 1.9
diff -2 -u -d -r1.8 -r1.9
--- otrs.RebuildTicketIndex.pl 20 Nov 2012 16:04:06 -0000 1.8
+++ otrs.RebuildTicketIndex.pl 22 Jan 2013 10:14:09 -0000 1.9
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.RebuildTicketIndex.pl - rebuild ticket index for queue view
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
Author: mg
Index: otrs.AddSystemAddress.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.AddSystemAddress.pl,v
retrieving revision 1.7
retrieving revision 1.8
diff -2 -u -d -r1.7 -r1.8
--- otrs.AddSystemAddress.pl 20 Nov 2012 16:02:51 -0000 1.7
+++ otrs.AddSystemAddress.pl 22 Jan 2013 10:14:09 -0000 1.8
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.AddSystemAddress.pl - add new system addresses
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
Author: mg
Index: otrs.AddService.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.AddService.pl,v
retrieving revision 1.6
retrieving revision 1.7
diff -2 -u -d -r1.6 -r1.7
--- otrs.AddService.pl 20 Nov 2012 16:02:47 -0000 1.6
+++ otrs.AddService.pl 22 Jan 2013 10:14:09 -0000 1.7
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.AddService.pl - add new Services
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
Author: mg
Index: otrs.GenericAgent.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.GenericAgent.pl,v
retrieving revision 1.11
retrieving revision 1.12
diff -2 -u -d -r1.11 -r1.12
--- otrs.GenericAgent.pl 20 Nov 2012 16:03:44 -0000 1.11
+++ otrs.GenericAgent.pl 22 Jan 2013 10:14:09 -0000 1.12
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.GenericAgent.pl - a generic agent -=> e. g. close ale emails in a specific queue
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -52,5 +52,5 @@
if ( $Opts{h} ) {
print "otrs.GenericAgent.pl <Revision $VERSION> - OTRS generic agent\n";
- print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+ print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
print "usage: otrs.GenericAgent.pl [-c 'Kernel::Config::GenericAgentJobModule'] [-d 1] ";
print "[-l <limit>] [-f force]\n";
Author: mg
Index: otrs.MarkTicketAsSeen.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.MarkTicketAsSeen.pl,v
retrieving revision 1.9
retrieving revision 1.10
diff -2 -u -d -r1.9 -r1.10
--- otrs.MarkTicketAsSeen.pl 20 Nov 2012 16:03:49 -0000 1.9
+++ otrs.MarkTicketAsSeen.pl 22 Jan 2013 10:14:09 -0000 1.10
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# otrs.MarkTicketAsSeen.pl - set all ticket to seen
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -50,5 +50,5 @@
if ( $Opts{h} ) {
print "otrs.MarkTicketAsSeen.pl <Revision $VERSION> - mark tickets as seen by the agent\n";
- print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n\n";
+ print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n\n";
print "usage: otrs.MarkTicketAsSeen.pl [-a]\n\n";
print "If you pass '-a' it will update ALL tickets, otherwise only non-closed\n";
Author: mg
Index: otrs.LoaderCache.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.LoaderCache.pl,v
retrieving revision 1.9
retrieving revision 1.10
diff -2 -u -d -r1.9 -r1.10
--- otrs.LoaderCache.pl 20 Nov 2012 16:03:48 -0000 1.9
+++ otrs.LoaderCache.pl 22 Jan 2013 10:14:09 -0000 1.10
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.LoaderCache.pl - the global test handle
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
Author: mg
Index: otrs.RebuildFulltextIndex.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.RebuildFulltextIndex.pl,v
retrieving revision 1.15
retrieving revision 1.16
diff -2 -u -d -r1.15 -r1.16
--- otrs.RebuildFulltextIndex.pl 20 Nov 2012 16:04:05 -0000 1.15
+++ otrs.RebuildFulltextIndex.pl 22 Jan 2013 10:14:09 -0000 1.16
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# otrs.RebuildFulltextIndex.pl - the global search indexer handle
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -48,5 +48,5 @@
if ( $Opts{h} ) {
print "otrs.RebuildFulltextIndex.pl <Revision $VERSION> - rebuild fulltext index\n";
- print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+ print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
print "usage: otrs.RebuildFulltextIndex.pl\n";
exit 1;
Author: mg
Index: otrs.CleanTicketIndex.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.CleanTicketIndex.pl,v
retrieving revision 1.10
retrieving revision 1.11
diff -2 -u -d -r1.10 -r1.11
--- otrs.CleanTicketIndex.pl 20 Nov 2012 16:03:10 -0000 1.10
+++ otrs.CleanTicketIndex.pl 22 Jan 2013 10:14:09 -0000 1.11
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# otrs.CleanTicketIndex.pl - Clean the Static Ticket Index
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -56,5 +56,5 @@
my $Command = shift || '--help';
print "otrs.CleanTicketIndex.pl <Revision $VERSION> - clean static index\n";
-print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
my $Module = $CommonObject{ConfigObject}->Get('Ticket::IndexModule');
Author: mg
Index: otrs.GetTicketThread.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.GetTicketThread.pl,v
retrieving revision 1.11
retrieving revision 1.12
diff -2 -u -d -r1.11 -r1.12
--- otrs.GetTicketThread.pl 20 Nov 2012 16:03:47 -0000 1.11
+++ otrs.GetTicketThread.pl 22 Jan 2013 10:14:09 -0000 1.12
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.GetTicketThread.pl - to print the whole ticket thread to STDOUT
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -50,5 +50,5 @@
print
"otrs.GetTicketThread.pl <Revision $VERSION> - Prints out a ticket with all its articles.\n";
- print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+ print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
print "usage: otrs.GetTicketThread.pl -t <TicketID> [-l article limit]\n";
exit 1;
Author: mg
Index: otrs.CreateTranslationFile.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.CreateTranslationFile.pl,v
retrieving revision 1.38
retrieving revision 1.39
diff -2 -u -d -r1.38 -r1.39
--- otrs.CreateTranslationFile.pl 21 Jan 2013 17:18:25 -0000 1.38
+++ otrs.CreateTranslationFile.pl 22 Jan 2013 10:14:09 -0000 1.39
@@ -1,3 +1,3 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.CreateTranslationFile.pl - create new translation file
Author: mg
Index: otrs.SetPassword.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.SetPassword.pl,v
retrieving revision 1.9
retrieving revision 1.10
diff -2 -u -d -r1.9 -r1.10
--- otrs.SetPassword.pl 20 Nov 2012 16:04:16 -0000 1.9
+++ otrs.SetPassword.pl 22 Jan 2013 10:14:09 -0000 1.10
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.SetPassword.pl - Changes or Sets password for a user
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -48,5 +48,5 @@
if ( $Opts{h} ) {
print "$0 <Revision $VERSION> - set a new agent password\n";
- print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+ print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
print "usage: otrs.SetPassword user password\n";
exit 1;
Author: mg
Index: otrs.AddGroup.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.AddGroup.pl,v
retrieving revision 1.10
retrieving revision 1.11
diff -2 -u -d -r1.10 -r1.11
--- otrs.AddGroup.pl 20 Nov 2012 16:02:31 -0000 1.10
+++ otrs.AddGroup.pl 22 Jan 2013 10:14:09 -0000 1.11
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.AddGroup.pl - add new system groups
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
Author: mg
Index: otrs.TicketDelete.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.TicketDelete.pl,v
retrieving revision 1.7
retrieving revision 1.8
diff -2 -u -d -r1.7 -r1.8
--- otrs.TicketDelete.pl 20 Nov 2012 16:04:19 -0000 1.7
+++ otrs.TicketDelete.pl 22 Jan 2013 10:14:09 -0000 1.8
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.TicketDelete.pl - delete tickets by ticket number or ticket id
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -132,5 +132,5 @@
print "otrs.TicketDelete.pl <Revision $VERSION> - ";
print "delete tickets by number.\n";
- print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+ print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
print "\n";
print "Usage: $0 [options] \n";
Author: mg
Index: otrs.PostMasterClient.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.PostMasterClient.pl,v
retrieving revision 1.5
retrieving revision 1.6
diff -2 -u -d -r1.5 -r1.6
--- otrs.PostMasterClient.pl 20 Nov 2012 16:03:59 -0000 1.5
+++ otrs.PostMasterClient.pl 22 Jan 2013 10:14:09 -0000 1.6
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.PostMasterClient.pl - the PostMasterDaemon.pl client
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
Author: mg
Index: otrs.Scheduler.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.Scheduler.pl,v
retrieving revision 1.43
retrieving revision 1.44
diff -2 -u -d -r1.43 -r1.44
--- otrs.Scheduler.pl 20 Nov 2012 16:04:11 -0000 1.43
+++ otrs.Scheduler.pl 22 Jan 2013 10:14:09 -0000 1.44
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# otrs.Scheduler.pl - provides Scheduler Daemon control on Unix like OS
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -513,5 +513,5 @@
sub _help {
print "otrs.Scheduler.pl <Revision $VERSION> - OTRS Scheduler Daemon\n";
- print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+ print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
print "Usage: otrs.Scheduler.pl -a <ACTION> (start|stop|status) [-f (force)]\n";
Author: mg
Index: otrs.Scheduler4winInstaller.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.Scheduler4winInstaller.pl,v
retrieving revision 1.10
retrieving revision 1.11
diff -2 -u -d -r1.10 -r1.11
--- otrs.Scheduler4winInstaller.pl 20 Nov 2012 16:04:15 -0000 1.10
+++ otrs.Scheduler4winInstaller.pl 22 Jan 2013 10:14:09 -0000 1.11
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# otrs.Scheduler4winInstaller.pl - helps to install OTRS Scheduler on Microsoft Windows OS
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -130,5 +130,5 @@
sub _help {
print "otrs.Scheduler4WinInstaller.pl <Revision $VERSION> - OTRS Scheduler daemon\n";
- print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+ print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
print "usage: otrs.Scheduler4WinInstaller.pl -a <ACTION> (install|remove) ";
}
Author: mg
Index: otrs.AddUser2Group.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.AddUser2Group.pl,v
retrieving revision 1.9
retrieving revision 1.10
diff -2 -u -d -r1.9 -r1.10
--- otrs.AddUser2Group.pl 20 Nov 2012 16:02:56 -0000 1.9
+++ otrs.AddUser2Group.pl 22 Jan 2013 10:14:09 -0000 1.10
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.AddUser2Group.pl - Add User to a Group
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
Author: mg
Index: otrs.PostMasterMailbox.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.PostMasterMailbox.pl,v
retrieving revision 1.10
retrieving revision 1.11
diff -2 -u -d -r1.10 -r1.11
--- otrs.PostMasterMailbox.pl 20 Nov 2012 16:04:01 -0000 1.10
+++ otrs.PostMasterMailbox.pl 22 Jan 2013 10:14:09 -0000 1.11
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.PostMasterMailbox.pl - the global eMail handle for email2db
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
@@ -51,5 +51,5 @@
if ( $Opts{h} ) {
print "PostMasterMailbox.pl <Revision $VERSION> - Fetch mail accounts for OTRS\n";
- print "Copyright (C) 2001-2012 OTRS AG, http://otrs.org/\n";
+ print "Copyright (C) 2001-2013 OTRS AG, http://otrs.org/\n";
print "usage: PostMasterMailbox.pl -t <TYPE> (POP3|POP3S|IMAP|IMAPS) -s <SERVER> -u <USER> ";
print "-p <PASSWORD> [-d 1-2] [-b <BACKGROUND_INTERVAL_IN_MIN>] [-f force]\n";
Author: mg
Index: otrs.GenericInterfaceDebugRead.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.GenericInterfaceDebugRead.pl,v
retrieving revision 1.8
retrieving revision 1.9
diff -2 -u -d -r1.8 -r1.9
--- otrs.GenericInterfaceDebugRead.pl 20 Nov 2012 16:03:45 -0000 1.8
+++ otrs.GenericInterfaceDebugRead.pl 22 Jan 2013 10:14:09 -0000 1.9
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.GenericInterfaceDebugRead.pl - the global test handle
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
Author: mg
Index: otrs.GetConfig.pl
===================================================================
RCS file: /home/cvs/otrs/bin/otrs.GetConfig.pl,v
retrieving revision 1.8
retrieving revision 1.9
diff -2 -u -d -r1.8 -r1.9
--- otrs.GetConfig.pl 20 Nov 2012 16:03:46 -0000 1.8
+++ otrs.GetConfig.pl 22 Jan 2013 10:14:09 -0000 1.9
@@ -1,6 +1,6 @@
-#!/usr/bin/perl -w
+#!/usr/bin/perl
# --
# bin/otrs.GetConfig.pl - get OTRS config vars
-# Copyright (C) 2001-2012 OTRS AG, http://otrs.org/
+# Copyright (C) 2001-2013 OTRS AG, http://otrs.org/
# --
# $Id$
---------------------------------------------------------------------
OTRS mailing list: cvs-log - Webpage: http://otrs.org/
Archive: http://lists.otrs.org/pipermail/cvs-log
To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/cvs-log