summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xindex.pl16
1 files changed, 0 insertions, 16 deletions
diff --git a/index.pl b/index.pl
deleted file mode 100755
index 985af29..0000000
--- a/index.pl
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/perl
-
-use strict;
-use warnings;
-
-use Xerl;
-
-use Socket;
-use Sys::Hostname;
-
-my $host = hostname();
-my $config = -e "config-$host.txt" ? "config-$host.txt" : 'config.txt';
-
-my Xerl $xerl = Xerl->new( config => $config );
-$xerl->run();
-