summaryrefslogtreecommitdiffstats
path: root/util
diff options
context:
space:
mode:
Diffstat (limited to 'util')
-rw-r--r--util/LocalVars.pm.sample24
1 files changed, 0 insertions, 24 deletions
diff --git a/util/LocalVars.pm.sample b/util/LocalVars.pm.sample
deleted file mode 100644
index 1f24872d..00000000
--- a/util/LocalVars.pm.sample
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/usr/bin/perl
-package LocalVars;
-require Exporter;
-@ISA = qw/Exporter/;
-@EXPORT = qw/
- $hostname $MYHOSTNAME $FQDN $SMTPSERVER
- $BBSHOME $JOBSPOOL $TMP
- $TAR $LYNX $GREP/;
-
-# host
-$hostname = 'ptt';
-$MYHOSTNAME = 'ptt.cc';
-$FQDN = 'ptt.csie.ntu.edu.tw';
-$SMTPSERVER = 'ptt2.csie.ntu.edu.tw';
-
-# dir
-$BBSHOME = '/home/bbs';
-$JOBSPOOL = "$BBSHOME/jobspool";
-$TMP = '/tmp';
-
-# program
-$TAR = '/usr/bin/tar';
-$LYNX = '/usr/local/bin/lynx'; # /usr/ports/www/lynx
-$GREP = '/usr/bin/grep';