summaryrefslogtreecommitdiffstats
path: root/util/LocalVars.pm.sample
blob: 671570096ddd97b37111795f2aa5653e625a948f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/perl
package LocalVars;
require Exporter;
@ISA = qw/Exporter/;
@EXPORT = qw/
    $hostname $FQDN $SMTPSERVER
    $BBSHOME $JOBSPOOL $TMP
    $TAR/;

# host
$hostname = 'ptt';
$FQDN = 'ptt.csie.ntu.edu.tw';
$SMTPSERVER = 'ptt2.csie.ntu.edu.tw';

# dir
$BBSHOME = '/home/bbs';
$JOBSPOOL = "$BBSHOME/jobspool";
$TMP = '/tmp';

# program
$TAR = '/bin/tar';