#!/usr/bin/perl -w # -- # bin/Cron4Win32.pl - a script tp generate a full crontab file for OTRS # Copyright (C) 2001-2007 OTRS GmbH, http://otrs.org/ # -- # $Id: Cron4Win32.pl,v 1.4 2007/01/30 17:49:55 tr Exp $ # -- # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -- # use ../ as lib location use File::Basename; use FindBin qw($RealBin); use lib dirname($RealBin); use lib dirname($RealBin)."/Kernel/cpan-lib"; use vars qw($VERSION); $VERSION = '$Revision: 1.4 $'; $VERSION =~ s/^\$.*:\W(.*)\W.+?$/$1/; use strict; my $PerlExe = ""; my $Directory = ""; my $CronTab = ""; my $OTRSHome = ""; #system ('NSISINSTDIR\cronHelper.pl --install'); #system ('NSISCronplfile'); #system ('NET START CRON'); if (!open (DATOUT, ">$CronTab")) { print STDERR "ERROR: Can't open directory 'crontab.txt: $!"; } else { flock (DATOUT, 2); seek DATOUT, 0, 0; truncate DATOUT, 0; if (!opendir(DIR, $Directory)) { print STDERR "ERROR: Can't open directory '$Directory': $!"; exit (1); } else { my @Eintraege = readdir(DIR); foreach my $CronData (@Eintraege) { if (! -d $CronData) { if (!open (DAT, "<$Directory/$CronData")) { # print STDERR "ERROR: Can't open directory '$Directory/$CronData: $!"; # exit (1); } else { flock (DAT, 2); while (my $Line=) { if ($Line =~ /^#/) { next; } else { $Line =~ s/\$HOME/$PerlExe\ $OTRSHome/; $Line =~ s/>> \/dev\/null//; print DATOUT "$Line"; } } } } } } closedir(DIR); closedir(DAT); closedir(DATOUT); 1; }