Changeset 5881 in genesis for tools/FreeBSD6_x
- Timestamp:
- Jan 28, 2008, 8:52:13 PM (17 years ago)
- Location:
- tools/FreeBSD6_x
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
tools/FreeBSD6_x/g_list.pl
r5722 r5881 6 6 7 7 # Config located at other file 8 my $local_conf_file="./genesis.conf.local"; 9 do($local_conf_file) || die("Cann't open $local_conf_file"); 10 8 my $conf_file="./genesis.conf"; 11 9 do($conf_file) || die("Cann't open $conf_file"); 10 12 11 13 12 … … 146 145 $revision=$1; 147 146 }; 148 printline("<H1>Genesis config (revision: $revision):</H1><P>\n<PRE>");147 printline("<H1>Genesis config - last changed rev $revision</H1><P>\n<PRE>"); 149 148 printline("$svn_version"); 150 149 printline("</PRE>"); -
tools/FreeBSD6_x/genesis.conf
r5722 r5881 1 #!/usr/bin/perl - 1 #!/usr/bin/perl -w 2 2 # 3 3 # Variable file … … 26 26 ); 27 27 28 #(inter)net env 29 if( defined $ENV{'SERVER_NAME'} ) { 30 $hostname=$ENV{'SERVER_NAME'}; 31 } 32 else { 33 $hostname=`hostname`; 34 }; 28 35 36 chomp($hostname); 37 $cgi_dir="http://$hostname/freebsd/6.0"; 38 $source="$cgi_dir/g_list.pl"; 39 40 #path variablen 41 $home="/usr/local/www/wlconfig.wirelessleiden.nl"; 42 $ndir="$home/nodes"; 43 $toolfile="$home/freebsd/6.0/wleiden.pl"; 44 45 46 #exec vars 47 $svn="/usr/local/bin/svn"; 48 $wicontrol='/usr/sbin/wicontrol'; 29 49 30 50 #naming vars … … 37 57 $dnsheader_confPath="$home/dns/dnsheader.conf"; 38 58 39 #node dir40 $ndir="$home/nodes";41 42 #wleiden.pl Path43 $toolfile="$home/tools/FreeBSD6_x/wleiden.pl";44 59 45 60 ## ssh key variablen ## -
tools/FreeBSD6_x/wleiden.pl
r5722 r5881 6 6 7 7 # Config located at other file 8 # Config located at other file 9 my $local_conf_file="./genesis.conf.local"; 10 do($local_conf_file) || die("Cann't open $local_conf_file"); 11 8 my $conf_file="./genesis.conf"; 12 9 do($conf_file) || die("Cann't open $conf_file"); 13 10 ################ END OF CONFIG ##########################
Note:
See TracChangeset
for help on using the changeset viewer.