source: genesis/config/iris/node/FreeBSD/8.0-RELEASE/genesis.conf@ 8676

Last change on this file since 8676 was 8676, checked in by richardvm, 14 years ago

got a list again

  • Property svn:executable set to *
File size: 1.3 KB
RevLine 
[6664]1#!/usr/bin/perl -w
[7273]2use Cwd;
[6664]3#
4# Variable file
5
6$NG = 0;
7
8#debugging variable
9$debug=0;
10
11#author credits
[7036]12$author="feb 2003 jasper\@WirelessLeiden.NL \| maart 2005/jul 2009 rick\@WirelessLeiden.NL";
[6664]13
14#filelist
15@filelist = ();
[7523]16#$filelist[0]="dhcpd.conf";
[7521]17$filelist[1]="rc.conf.local";
[6664]18$filelist[2]="resolv.conf";
[7036]19#$filelist[3]="named.conf";
[6664]20$filelist[4]="txtconfig";
21$filelist[5]="authorized_keys";
[7141]22$filelist[6]="dnsmasq.conf";
[6664]23
24#Ignore this node diretories
25%removefromnodelist = (
26 'retired' => 'YES',
27 'obsolete' => 'YES',
28 );
29
30#(inter)net env
31if( defined $ENV{'SERVER_NAME'} ) {
32 $hostname=$ENV{'SERVER_NAME'};
33}
34else {
[8672]35 # $hostname=`hostname`;
36 $hostname='sunfire.wirelessleiden.nl';
[6664]37};
38
39chomp($hostname);
[8672]40$uri='/config/iris/node/freebsd/8.0-RELEASE/';
41$cgi_dir="$uri";
[8620]42$source="$cgi_dir";
[6664]43
44#path variablen
[8676]45$home=getcwd;
46$ndir="$home/../../../../../nodes";
47$toolfile="$home/wleiden.pl";
[6664]48
49
50#exec vars
51$svn="/usr/local/bin/svn";
52$wicontrol='/usr/sbin/wicontrol';
53
54#naming vars
55$configfile="wleiden.conf";
56
57#module IP.pm
[8676]58$IP_pmPath="$home/IP.pm";
[6664]59
60#dnsheader.conf
61$dnsheader_confPath="$home/dns/dnsheader.conf";
62
63
64## ssh key variablen ##
65#global ssh_keys
[8676]66$global_keyPath="$home/config/nodes/global_keys";
[6664]67#node specific
68$ssh_file='ssh_key'
69
Note: See TracBrowser for help on using the repository browser.