/[pxelator]/lib/PXElator/log.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /lib/PXElator/log.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 49 - (show annotations)
Thu Jul 30 00:08:21 2009 UTC (14 years, 8 months ago) by dpavlin
File size: 218 byte(s)
replacement for bin/start-split.sh

1 package log;
2
3 use warnings;
4 use strict;
5 use autodie;
6
7 use server;
8
9 our $dir = "$server::base_dir/log";
10 mkdir $dir unless -e $dir;
11
12 foreach ( glob("$dir/pxelator.*.log") ) {
13 warn "unlink $_ ", -s $_;
14 unlink $_;
15 }
16
17 1;

  ViewVC Help
Powered by ViewVC 1.1.26