File:  [LON-CAPA] / doc / loncapafiles / updatequery.piml
Revision 1.52: download - view: text, annotated - select for diffs
Tue Apr 3 22:13:40 2007 UTC (17 years ago) by albertel
Branches: MAIN
CVS tags: HEAD
- switch to use dns

- change host configuration to install and maintain dns_*.tab
   - installs the specific cluster tab file, and lists myself in the hosts.tab file

    1: <!-- updatequery.piml -->
    2: 
    3: <!-- $Id: updatequery.piml,v 1.52 2007/04/03 22:13:40 albertel Exp $ -->
    4: 
    5: <!--
    6: 
    7: This file is part of the LearningOnline Network with CAPA (LON-CAPA).
    8: 
    9: LON-CAPA is free software; you can redistribute it and/or modify
   10: it under the terms of the GNU General Public License as published by
   11: the Free Software Foundation; either version 2 of the License, or
   12: (at your option) any later version.
   13: 
   14: LON-CAPA is distributed in the hope that it will be useful,
   15: but WITHOUT ANY WARRANTY; without even the implied warranty of
   16: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   17: GNU General Public License for more details.
   18: 
   19: You should have received a copy of the GNU General Public License
   20: along with LON-CAPA; if not, write to the Free Software
   21: Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   22: 
   23: /home/httpd/html/adm/gpl.txt
   24: 
   25: http://www.lon-capa.org/
   26: 
   27: -->
   28: 
   29: <piml>
   30: <targetroot>/</targetroot>
   31: <files>
   32: <file>
   33: <target dist='default'>/</target>
   34: <perlscript mode='fg'>
   35: $|=1;
   36:   print(&lt;&lt;END);
   37: 
   38: 
   39: *********************************************
   40: *********************************************
   41: ****                                     ****
   42: **** LON-CAPA SYSTEM INFORMATION REQUEST ****
   43: ****                                     ****
   44: **** Please respond to the choices below ****
   45: ****                                     ****
   46: *********************************************
   47: *********************************************
   48: 
   49: END
   50: sleep(3);
   51: </perlscript>
   52: </file>
   53: <file>
   54: <target dist='default'>loncom/hosts.tab</target>
   55: <perlscript mode='fg'>
   56: unless (-l "<TARGET />") {
   57:   print(&lt;&lt;END);
   58: 
   59: ===============================================================================
   60: Which cluster option would you like to have installed?
   61: IMPORTANT: to take advantage of the cluster options 1) and 3),
   62: you must contact lon-capa\@lon-capa.org.
   63: 
   64: 1) PRODUCTION - you want to eventually connect this machine to the
   65:                 LON-CAPA content sharing network. This setting is for
   66:                 schools, colleges, and universities, that currently
   67:                 are running - or in the future will run - courses
   68: 2) STAND-ALONE - you want this machine to run in 'stand-alone' mode and
   69:                  not be connected to other LON-CAPA machines for now
   70: 3) DEVELOPMENT - you want to do software (not content!) development with
   71:                  this workstation and eventually link it with the
   72:                  workstations of other LON-CAPA software developers.
   73: 4) RUNNING YOUR OWN CLUSTER - this machine is not in the standard LON-CAPA
   74:                  clusters and won't be in the future and you want the existing
   75:                  hosts.tab and domain.tab files to be left alone.
   76:                  (This choice is unlikely what you want to select.)
   77: END
   78: # Option number 26 will install rawhide_hosts.tab, but
   79: # the typical user does not want to be part of an intensive
   80: # machine test cluster.
   81: 
   82: # get input
   83: # if valid then process, otherwise loop
   84: $flag=0;
   85: while (!$flag) {
   86:   print "ENTER 1, 2, 3, or 4:\n";
   87:   my $choice=&lt;&gt;;
   88:   chomp($choice);
   89:   if ($choice==1) {
   90:     $lonCluster='production'; $flag=1;
   91:   }
   92:   elsif ($choice==2) {
   93:     $lonCluster='standalone'; $flag=1;
   94:   }
   95:   elsif ($choice==3) {
   96:     $lonCluster='development'; $flag=1;
   97:   }
   98:   elsif ($choice==4) {
   99:     $lonCluster='existing'; $flag=1;
  100:     foreach my $file ('hosts.tab','dns_hosts.tab',
  101:                       'domain.tab','dns_domain.tab') {
  102:         if (-e '/home/httpd/lonTabs/'.$file) {
  103: 	    `cp /home/httpd/lonTabs/$file ../existing_$file`;
  104:         }
  105:         else {
  106: 	    print &lt;&lt;END;
  107: There is no existing /home/httpd/lonTabs/$file
  108: END
  109:             die('');
  110:         }
  111:     }
  112:   }
  113:   elsif ($choice==26) {
  114:     $lonCluster='rawhide'; $flag=1;
  115:   }
  116: }
  117: }
  118: </perlscript>
  119: </file>
  120: <file>
  121: <target dist='default'>/home/httpd/lonTabs/hosts.tab</target>
  122: <perlscript mode='fg'>
  123: $|=1;
  124: my $domainDescription;
  125: my $domainTabExtras;
  126: my $primaryLibServer;
  127: my @libservers = ();
  128: unless (-e "<TARGET />") {
  129:   print(&lt;&lt;END);
  130:            WELCOME TO LON-CAPA!
  131: 
  132: If you have questions, please visit http://install.lon-capa.org
  133: or contact helpdesk\@lon-capa.org.
  134: 
  135: ===============================================================================
  136: The following 4 values are needed to configure LON-CAPA:
  137: * Machine Role
  138: * LON-CAPA Domain Name
  139: * LON-CAPA Machine ID Name, and
  140: * Server Administration E-mail Address.
  141: ===============================================================================
  142: 
  143: In addition, a Support E-mail Address can also be included. If
  144: an address is included then one of the options in the LON-CAPA 
  145: help menu will be a link to a form that a user will complete to
  146: request LON-CAPA help.  
  147: 
  148: END
  149: 
  150: open(OUT,'&gt;/tmp/loncapa_updatequery.out');
  151: close(OUT);
  152: 
  153: # query for Machine Role
  154:   print(&lt;&lt;END);
  155: **** Machine Role ****
  156: Library server (recommended if first-time installation of LON-CAPA):
  157:    Servers that are repositories of authoritative educational resources.
  158:    These servers also provide the construction space by which instructors
  159:    assemble their classroom online material.
  160: Access server:
  161:    Servers that load-balance high-traffic delivery of educational resources
  162:    over the world-wide web.
  163: 1) Will this be a library server? (recommended if this is your first install)
  164: 2) Or, will this be an access server?
  165: END
  166: my $flag=0;
  167: my $r='';
  168: my $lonRole;
  169: while (!$flag) {
  170:   print "ENTER A CHOICE OF 1 or 2:\n";
  171:   my $choice=&lt;&gt;;
  172:   chomp($choice);
  173:   if ($choice==1) {
  174:     open(OUT,'&gt;&gt;/tmp/loncapa_updatequery.out');
  175:     print(OUT 'lonRole'."\t".'library'."\n");
  176:     close(OUT);
  177:     $lonRole='library';
  178:     $r='l';
  179:     $flag=1;
  180:   }
  181:   elsif ($choice==2) {
  182:     open(OUT,'&gt;&gt;/tmp/loncapa_updatequery.out');
  183:     print(OUT 'lonRole'."\t".'access'."\n");
  184:     close(OUT);
  185:     $lonRole='access';
  186:     $r='a';
  187:     $flag=2;
  188:   }
  189:   else {
  190: 
  191:   }
  192: }
  193: 
  194: # need to recommend a machine ID name (ipdomain.l.somenumber)
  195: my $hostname=`hostname -f`; chomp($hostname);
  196: my $ipdomain='';
  197: if ($hostname=~/([^\.]*)\.([^\.]*)$/) {
  198:   $ipdomain=$1;
  199: }
  200: 
  201:   print(&lt;&lt;END);
  202: 
  203: **** Domain ****
  204: [This does NOT need to correspond to internet address domains.
  205:  Please make this name short AND descriptive of your organization.
  206:  Domain names are close to impossible to change later!!!
  207:  Good examples might be "msu" or "bionet" or "vermontcc".
  208:  Bad examples are "physics" (too general)
  209:    or "michiganstateuniversity" (too long)
  210:    or "msuedu" (internet domain, just make it "msu")
  211:    or "msuphysics" (only if there is a good reason to limit to department
  212:                     - we don't know of one)
  213:    or "mydomain" (what is that?)
  214:  Avoid multiple domains at the same institution, even if it means that you 
  215:  have to actually work together with your colleagues. You can still run
  216:  multiple library servers within the same domain.
  217:  If this domain is eventually going to be part of the main production
  218:  cluster, you MUST contact the LON-CAPA group at MSU (loncapa@loncapa.org)
  219:  to have a domain name assigned, and then use it exactly as given. This is
  220:  also true for test installs that might eventually turn into production setups.
  221:  Stop now if you didn't do so.]
  222: END
  223: 
  224: # get domain name
  225: # accept if valid, if not valid, tell user and repeat
  226: $flag=0;
  227: my $lonDefDomain;
  228: while (!$flag) {
  229: if ($ipdomain) {
  230: print(&lt;&lt;END);
  231: ENTER LONCAPA DOMAIN [$ipdomain]:
  232: END
  233: }
  234: else {
  235:   print(&lt;&lt;END);
  236: ENTER LONCAPA DOMAIN:
  237: END
  238: }
  239:   my $choice=&lt;&gt;;
  240:   chomp($choice);
  241:   my $bad_domain_flag=0;
  242:   my @bad_domain_names=('res','raw','userfiles','priv','adm','uploaded',
  243: 	'editupload');
  244:   foreach my $bad (@bad_domain_names) {
  245:     $bad_domain_flag=1 if $choice eq $bad;
  246:   }
  247:   if ($choice=~/capa/i) {
  248:      $bad_domain_flag=1;
  249:   }
  250:   if ($ipdomain and $choice=~/^\s*$/) {
  251:     $choice=$ipdomain;
  252:     open(OUT,'&gt;&gt;/tmp/loncapa_updatequery.out');
  253:     print(OUT 'lonDefDomain'."\t".$choice."\n");
  254:     close(OUT);
  255:     $lonDefDomain=$choice;
  256:     $flag=1;
  257:   } elsif (length($choice)>35) {
  258:     print "Name too long\n";
  259:   } elsif (length($choice)<2) {
  260:     print "Name too short\n";
  261:   } elsif ($bad_domain_flag) {
  262:     print "Invalid input ('$choice' conflicts with LON-CAPA namespace).\n";
  263:     print "Please try something different than '$choice'\n";
  264:   } elsif ($choice!~/\_/ and $choice=~/^[\w\-.]+$/) {
  265:     open(OUT,'&gt;&gt;/tmp/loncapa_updatequery.out');
  266:     print(OUT 'lonDefDomain'."\t".$choice."\n");
  267:     close(OUT);
  268:     $lonDefDomain=$choice;
  269:     $r='l';
  270:     $flag=1;
  271:   } else {
  272:     print "Invalid input (only alphanumeric characters, '-', and '.' supported).\n";
  273:   }
  274: }
  275: 
  276: 
  277: # get domain description
  278: # accept if valid, if not valid, tell user and repeat
  279: $flag=0;
  280: 
  281: while (!$flag) {
  282:   print(&lt;&lt;END);
  283: 
  284: **** Domain Description ****
  285: String describing the domain, to be shown to users.
  286: [Example, msu is Michigan State University]
  287: ENTER DOMAIN DESCRIPTION:
  288: END
  289: 
  290:   my $choice=&lt;&gt;;
  291:   chomp($choice);
  292:   if ($choice!~/:/) {
  293:     open(OUT,'&gt;&gt;/tmp/loncapa_updatequery.out');
  294:     print(OUT 'domainDescription'."\t".$choice."\n");
  295:     close(OUT);
  296:     $domainDescription=$choice;
  297:     $flag=1;
  298:   }
  299:   else {
  300:     print "Invalid input (no ':' allowed).\n";
  301:   }
  302: }
  303: 
  304: my $lonHostID;
  305: if ($lonDefDomain) {
  306:   $lonHostID=$lonDefDomain.$r.int(1+rand(9)); # should be probably also detect
  307:                                               # against the hosts.tab
  308: }
  309: 
  310:   print(&lt;&lt;END);
  311: 
  312: **** Machine ID Name ****
  313: [This does NOT need to correspond to internet address names;
  314:  this name MUST be unique to the whole LON-CAPA network;
  315:  we recommend that you use a name based off of your institution.
  316:  Good examples: "msul1" or "bioneta2".
  317:  Bad examples: "loncapabox" or "studentsinside".
  318:  Note that machine names are very hard to change later.]
  319: END
  320: # get machine name
  321: # accept if valid, if not valid, tell user and repeat
  322: $flag=0;
  323: while (!$flag) {
  324: if ($ipdomain) {
  325: print(&lt;&lt;END);
  326: ENTER LONCAPA MACHINE ID [$lonHostID]:
  327: END
  328: }
  329: else {
  330:   print(&lt;&lt;END);
  331: ENTER LONCAPA MACHINE ID:
  332: END
  333: }
  334:   my $choice=&lt;&gt;;
  335:   chomp($choice);
  336:   if ($choice=~/capa/i) {
  337:     print "Invalid input (names containing 'capa' are reserved).\n";
  338:   } elsif ($lonHostID and $choice=~/^\s*$/) {
  339:     $choice=$lonHostID;
  340:     open(OUT,'&gt;&gt;/tmp/loncapa_updatequery.out');
  341:     print(OUT 'lonHostID'."\t".$choice."\n");
  342:     close(OUT);
  343:     $lonHostID=$choice;
  344:     $flag=1;
  345:   } elsif (length($choice)>45) {
  346:     print "Name too long\n";
  347:   } elsif (length($choice)<4) {
  348:     print "Name too short\n";
  349:   } elsif ($choice!~/\_/ and $choice=~/^[\w\-.]+$/) {
  350:     open(OUT,'&gt;&gt;/tmp/loncapa_updatequery.out');
  351:     print(OUT 'lonHostID'."\t".$choice."\n");
  352:     close(OUT);
  353:     $lonHostID=$choice;
  354:     $flag=1;
  355:   } else {
  356:     print "Invalid input (only alphanumeric characters, '-', and '.' supported).\n";
  357:   }
  358: }
  359: 
  360: # get primary library server in domain
  361: if ($lonRole eq 'library') {
  362:     if (!grep/^\Q$lonHostID\E$/,@libservers) {
  363:         push(@libservers,$lonHostID);
  364:     } 
  365:     if (@libservers == 1) {
  366:         $primaryLibServer = $libservers[0];
  367:     }
  368: }
  369: while (!$flag) {
  370:   print(&lt;&lt;END);
  371: **** Domain's Primary Library Server ID ****
  372: This should be the LON-CAPA machine ID of a library server in your 
  373: domain.  If you only have a single library server in your domain, then
  374: the Primary Library server ID will be the machine ID of that server. 
  375: This server will be where domain data which are not associated with any
  376: specific home library server will be stored (e.g., e-mail broadcast by
  377: administrators to users in the domain).
  378: END
  379:     if (defined($primaryLibServer)) {
  380:         print(&lt;&lt;END);
  381: ENTER DOMAIN'S PRIMARY LIBRARY SERVER ID [$primaryLibServer]:
  382: END
  383:     } elsif (@libservers > 0) {
  384:         print(&lt;&lt;END);
  385: ENTER DOMAIN'S PRIMARY LIBRARY SERVER ID [$libservers[0]]
  386: END
  387:     } else {
  388:         print (&lt;&lt;END);
  389: No library servers could be identified for this domain.  If you have already installed LON-CAPA on a different server (designated as a library server) in this domain, please enter the LONCAPA MACHINE ID of that server.  If not, you will need to install a LON-CAPA library server.  Enter the MACHINE ID of the server you plan to designate as a library server.
  390: END
  391:     }
  392: 
  393:     my $choice=&lt;&gt;;
  394:     chomp($choice);
  395:     if ($primaryLibServer and $choice=~/^\s*$/) {
  396:         $choice=$primaryLibServer;
  397:         open(OUT,'&gt;&gt;/tmp/loncapa_updatequery.out');
  398:         print(OUT 'primaryLibServer'."\t".$choice."\n");
  399:         close(OUT);
  400:         $flag=1;
  401:     } elsif (length($choice)>35) {
  402:         print "Name too long\n";
  403:     } elsif (length($choice)<4) {
  404:         print "Name too short\n";
  405:     } elsif ($choice!~/\_/ and $choice=~/^[\w\-.]+$/) {
  406:         open(OUT,'&gt;&gt;/tmp/loncapa_updatequery.out');
  407:         print(OUT 'primaryLibServer'."\t".$choice."\n");
  408:         close(OUT);
  409:         $primaryLibServer=$choice;
  410:         $flag=1;
  411:     } else {
  412:         print "Invalid input (only alphanumeric characters, '-', and '.' supported).\n";
  413:     }
  414: }
  415: 
  416: 
  417: # get admin e-mail address
  418: # accept if valid, if not valid, tell user and repeat
  419: $flag=0;
  420: my $lonAdmEMail;
  421: while (!$flag) {
  422:   print(&lt;&lt;END);
  423: 
  424: **** Server Administrator's E-mail ****
  425: E-mail address of the person who will manage this machine
  426: [should be in the form somebody\@somewhere]
  427: ENTER ADMIN E-MAIL ADDRESS:
  428: END
  429: 
  430:   my $choice=&lt;&gt;;
  431:   chomp($choice);
  432:   if ($choice=~/\@/) {
  433:     open(OUT,'&gt;&gt;/tmp/loncapa_updatequery.out');
  434:     print(OUT 'lonAdmEMail'."\t".$choice."\n");
  435:     close(OUT);
  436:     $lonAdmEMail=$choice;
  437:     $flag=1;
  438:   }
  439:   else {
  440:     print "Invalid input (this needs to look like an e-mail address!).\n";
  441:   }
  442: }
  443: 
  444: 
  445: # get support e-mail address
  446: # accept if valid, if not valid, tell user and repeat
  447: $flag=0;
  448: my $lonSupportEMail;
  449: while (!$flag) {
  450:   print(&lt;&lt;END);
  451: 
  452: **** Support E-mail ****
  453: E-mail address of the person who will receive 
  454: help requests from LON-CAPA users who access 
  455: the system via this server. If the address is left blank,
  456: then a help support form will not be displayed 
  457: as part of the help menu.
  458: [should be in the form somebody\@somewhere]
  459: ENTER SUPPORT E-MAIL ADDRESS:
  460: END
  461: 
  462:   my $choice=&lt;&gt;;
  463:   chomp($choice);
  464:   $choice =~ s/\s//g;
  465:   if ( ($choice=~/\@/) || $choice eq '') {
  466:     open(OUT,'&gt;&gt;/tmp/loncapa_updatequery.out');
  467:     print(OUT 'lonSupportEMail'."\t".$choice."\n");
  468:     close(OUT);
  469:     $lonSupportEMail=$choice;
  470:     $flag=1;
  471:   }
  472:   else {
  473:     print "Invalid input (this either needs to be blank, or look like an e-mail address!).\n";
  474:   }
  475: }
  476: 
  477: 
  478: # update loncapa.conf
  479: my $confdir = '/etc/httpd/conf/';
  480: if ('<DIST />' eq 'sles10' || '<DIST />' eq 'suse10.1') {
  481:      $confdir = '/etc/apache2/';
  482: }   
  483: my $filename='loncapa.conf';
  484: my %perlvar;
  485:     if (-e "$confdir$filename") {
  486: 	open(CONFIG,'&lt;'.$confdir.$filename) or die("Can't read $confdir$filename");
  487: 	while (my $configline=&lt;CONFIG&gt;) {
  488: 	    if ($configline =~ /^[^\#]*PerlSetVar/) {
  489: 		my ($unused,$varname,$varvalue)=split(/\s+/,$configline);
  490: 		chomp($varvalue);
  491: 		$perlvar{$varname}=$varvalue if $varvalue!~/^\{\[\[\[\[/;
  492: 	    }
  493: 	}
  494: 	close(CONFIG);
  495:     }
  496:     $perlvar{'lonHostID'}=$lonHostID;
  497:     $perlvar{'lonDefDomain'}=$lonDefDomain;
  498:     $perlvar{'lonAdmEMail'}=$lonAdmEMail;
  499:     $perlvar{'lonSupportEMail'}=$lonSupportEMail;
  500:     $perlvar{'lonRole'}=$lonRole;
  501:     unless ($perlvar{'lonLoadLim'} and $perlvar{'lonLoadLim'}!~/\{\[\[\[\[/) {
  502:        $perlvar{'lonLoadLim'}='2.00';
  503:     }
  504:     unless ($perlvar{'lonUserLoadLim'} and $perlvar{'lonUserLoadLim'}!~/\{\[\[\[\[/) {
  505:        $perlvar{'lonUserLoadLim'}='0';
  506:     }
  507:     unless ($perlvar{'lonExpire'} and $perlvar{'lonExpire'}!~/\{\[\[\[\[/) {
  508:        $perlvar{'lonExpire'}='86400';
  509:     }
  510:     unless ($perlvar{'lonReceipt'} and $perlvar{'lonReceipt'}!~/\{\[\[\[\[/) {
  511:        my $lonReceipt='';
  512:        srand(time ^ $$ ^ unpack "%L*", `ps axww | gzip`);
  513:        my @alnum=(0..9,a..z);
  514:        foreach my $i (1..20) {
  515: 	 $lonReceipt.=$alnum[int(rand(36))];
  516:        }
  517:        $perlvar{'lonReceipt'}=$lonReceipt;
  518:     }
  519:     open(OUT,"&gt;$confdir$filename") or
  520:       die("Cannot output to $confdir$filename\n");
  521:     foreach my $key (keys %perlvar) {
  522:       my $value=$perlvar{$key};
  523:       my $line = "PerlSetVar     $key      $value"; 
  524:       if ($value eq '') {
  525:           $line = '#'.$line;
  526:       }
  527:       print(OUT &lt;&lt;END);
  528: $line
  529: END
  530:     }
  531:     close(OUT);
  532: }
  533: </perlscript>
  534: </file>
  535: <file>
  536: <target dist='default'>/etc/httpd/conf/</target>
  537: <target dist='sles10 suse10.1'>/etc/apache2/</target>
  538: <perlscript mode='fg'>
  539: sub securesetting {
  540:     my (%perlvar)=@_;
  541:     my $securestatus='unknown';
  542:     my $securenum='';
  543:     if      ( $perlvar{'loncAllowInsecure'}&&  $perlvar{'londAllowInsecure'}) {
  544: 	$securestatus='no';                  $securenum='4';
  545:     } elsif ( $perlvar{'loncAllowInsecure'}&& !$perlvar{'londAllowInsecure'}) {
  546: 	$securestatus='lond';                $securenum='3';
  547:     } elsif (!$perlvar{'loncAllowInsecure'}&&  $perlvar{'londAllowInsecure'}) {
  548: 	$securestatus='lonc';                $securenum='2';
  549:     } elsif (!$perlvar{'loncAllowInsecure'}&& !$perlvar{'londAllowInsecure'}) {
  550: 	$securestatus='yes (lond and lonc)'; $securenum='1';
  551:     }
  552:     return ($securestatus,$securenum);
  553: }
  554: # read values from loncapa.conf
  555: my $confdir = "<TARGET />";
  556: my $filename='loncapa.conf';
  557: my %perlvar;
  558: my ($securestatus,$securenum);
  559:     if (-e "$confdir$filename") {
  560: 	open(CONFIG,'&lt;'.$confdir.$filename) or 
  561:           die("Can't read $confdir$filename");
  562: 	while (my $configline=&lt;CONFIG&gt;) {
  563: 	    if ($configline =~ /^[^\#]*PerlSetVar/) {
  564: 		my ($unused,$varname,$varvalue)=split(/\s+/,$configline);
  565: 		chomp($varvalue);
  566: 		$perlvar{$varname}=$varvalue;
  567: 	    }
  568: 	}
  569: 	close(CONFIG);
  570:     }
  571:     unless ($perlvar{'lonLoadLim'} and $perlvar{'lonLoadLim'}!~/\{\[\[\[\[/) {
  572:        $perlvar{'lonLoadLim'}='2.00';
  573:     }
  574:     unless ($perlvar{'lonUserLoadLim'} and $perlvar{'lonUserLoadLim'}!~/\{\[\[\[\[/) {
  575:        $perlvar{'lonUserLoadLim'}='0';
  576:     }
  577:     unless ($perlvar{'lonExpire'} and $perlvar{'lonExpire'}!~/\{\[\[\[\[/) {
  578:        $perlvar{'lonExpire'}='86400';
  579:     }
  580:     unless ($perlvar{'londAllowInsecure'} and $perlvar{'londAllowInsecure'}!~/\{\[\[\[\[/) {
  581:        $perlvar{'londAllowInsecure'}='1';
  582:     }
  583:     unless ($perlvar{'loncAllowInsecure'} and $perlvar{'loncAllowInsecure'}!~/\{\[\[\[\[/) {
  584:        $perlvar{'loncAllowInsecure'}='1';
  585:     }
  586:     ($securestatus,$securenum)=&securesetting(%perlvar);
  587:     unless ($perlvar{'lonReceipt'} and $perlvar{'lonReceipt'}!~/\{\[\[\[\[/) {
  588:        my $lonReceipt='';
  589:        srand(time ^ $$ ^ unpack "%L*", `ps axww | gzip`);
  590:        my @alnum=(0..9,a..z);
  591:        foreach my $i (1..20) {
  592: 	 $lonReceipt.=$alnum[int(rand(36))];
  593:        }
  594:        $perlvar{'lonReceipt'}=$lonReceipt;
  595:     }
  596: my %perlvarstatic;
  597:     if (-e "${confdir}loncapa_apache.conf") {
  598: 	open(CONFIG,'&lt;'.$confdir.'loncapa_apache.conf') or 
  599:           die("Can't read ${confdir}loncapa_apache.conf");
  600: 	while (my $configline=&lt;CONFIG&gt;) {
  601: 	    if ($configline =~ /^[^\#]*PerlSetVar/) {
  602: 		my ($unused,$varname,$varvalue)=split(/\s+/,$configline);
  603: 		chomp($varvalue);
  604: 		$perlvarstatic{$varname}=$varvalue;
  605: 	    }
  606: 	}
  607: 	close(CONFIG);
  608:     }
  609:     if (!$domainDescription && $lonCluster ne 'existing') {
  610:        open(IN,'&lt;../'.$lonCluster.'_domain.tab');
  611:        while(&lt;IN&gt;) {
  612:           if (/^$perlvar{'lonDefDomain'}\:/) {
  613: 	     (undef,$domainDescription,$domainTabExtras)=split(/:/,$_,3);
  614: 	     chomp($domainDescription);
  615: 	     chomp($domainTabExtras);
  616: 	     # the remianing field (primary lib server) is handled later
  617: 	     $domainTabExtras = join(':',(split(/:/,$domainTabExtras))[0..5]);
  618:              last;
  619:           }
  620:        }
  621:        close(IN);
  622:     }
  623:     if (!$domainDescription) {
  624:        open(IN,'&lt;/home/httpd/lonTabs/domain.tab');
  625:        while(&lt;IN&gt;) {
  626:           if (/^$perlvar{'lonDefDomain'}\:/) {
  627: 	     (undef,$domainDescription,$domainTabExtras)=split(/:/,$_,3);
  628: 	     chomp($domainDescription);
  629: 	     chomp($domainTabExtras);
  630: 	     # the remianing field (primary lib server) is handled later
  631: 	     $domainTabExtras = join(':',(split(/:/,$domainTabExtras))[0..5]);
  632:              last;
  633:           }
  634:        }
  635:        close(IN);
  636:     }
  637:     if (!$primaryLibServer and $lonCluster ne 'existing') {
  638:         open(IN,'&lt;../'.$lonCluster.'_domain.tab');
  639:         while(&lt;IN&gt;) {
  640:             if (/^$perlvar{'lonDefDomain'}\:/) {
  641:                 (undef,undef,undef,undef,undef,undef,undef,undef,
  642:                                               $primaryLibServer)=split(/:/,$_);
  643:                 chomp($primaryLibServer);
  644:             }
  645:         }
  646:         close(IN);
  647:         if (!$primaryLibServer) {
  648:             open(IN,'&lt;../'.$lonCluster.'_hosts.tab');
  649:             while(&lt;IN&gt;) {
  650:                 if (/^([^\:]+)\:\Q$perlvar{'lonDefDomain'}\E\:library\:/) {
  651:                     push(@libservers,$1);
  652:                 }
  653:             }
  654:             close(IN);
  655:             if (@libservers == 1) {
  656:                 $primaryLibServer = $libservers[0];
  657:             }
  658:         }
  659:     }
  660:     if (!$primaryLibServer) {
  661:         open(IN,'&lt;/home/httpd/lonTabs/domain.tab');
  662:         while(&lt;IN&gt;) {
  663:             if (/^$perlvar{'lonDefDomain'}\:/) {
  664:                 (undef,undef,undef,undef,undef,undef,undef,undef,
  665:                                               $primaryLibServer)=split(/:/,$_);
  666:                 chomp($primaryLibServer);
  667:             }
  668:             close(IN);
  669:         }
  670:         if (!$primaryLibServer) {
  671:             open(IN,'&lt;/home/httpd/lonTabs/hosts.tab');
  672:             while(&lt;IN&gt;) {
  673:                 if (/^([^\:]+)\:\Q$perlvar{'lonDefDomain'}\E\:library\:/) {
  674:                     push(@libservers,$1);
  675:                 }
  676:             }
  677:             close(IN);
  678:             if (@libservers == 1) {
  679:                 $primaryLibServer = $libservers[0];
  680:             }
  681:         }
  682:     }
  683:    
  684: # implement editing logic below, interactively
  685: # update loncapa.conf until 12 is entered
  686: 
  687: $flag=0;
  688: 
  689: while (!$flag) {
  690:   print(&lt;&lt;END);
  691: 
  692: ===============================================================================
  693: This is now the current configuration of your machine.
  694:  1) Domain Name: $perlvar{'lonDefDomain'}
  695:  2) Domain Description: $domainDescription
  696:  3) Machine Name: $perlvar{'lonHostID'}
  697:  4) ID of primary library server for domain: $primaryLibServer
  698:  5) Server Administrator's E-mail Address: $perlvar{'lonAdmEMail'}
  699:  6) Support E-mail Address: $perlvar{'lonSupportEMail'}
  700:  7) Role: $perlvar{'lonRole'}
  701:  8) Cache Expiration Time: $perlvar{'lonExpire'}
  702:  9) Server Load: $perlvar{'lonLoadLim'}
  703: 10) User Load: $perlvar{'lonUserLoadLim'}
  704: 11) Allow only secure connections: $securestatus 
  705: 12) Everything is correct up above
  706: END
  707: 
  708: my $error='';
  709: foreach my $v ($perlvar{'lonDefDomain'},$perlvar{'lonHostID'}) {
  710:    if (length($v)>35) { $error.="\nName $v too long"; }		
  711:    if (length($v)<2) { $error.="\nName $v too short"; }
  712:    if ($v=~/capa/i) {
  713: 	if ($v!~/^oucapa\d+$/ && 
  714: 	    ($v!~/^capa\d+$/ && $perlvar{'lonDefDomain'} eq 'uwsp')) {
  715: 		 $error.="\nName $v contains 'capa'"; 
  716: 	}
  717:    }
  718:    foreach my $bad ('res','raw','userfiles','priv','adm','uploaded',
  719: 	'editupload') {
  720:       $error.="\nName $v reserved." if $v eq $bad;
  721:    }
  722:    if ($v=~/[^\w\-.]/) { $error.="\nName $v contains special characters"; }
  723: }
  724: if ($domainDescription!~/^[\(\)\-\w\s,]+$/) {
  725:    $error.="\nDomain Description contains special characters";
  726: } 
  727: foreach my $v ($perlvar{'lonExpire'},$perlvar{'lonLoadLim'}) {
  728:    unless ($v=~/^[\d+\.]+$/) { $error.="\nNumber expected instead of $v"; }
  729: }
  730: unless (($perlvar{'lonRole'} eq 'library') || ($perlvar{'lonRole'} eq 'access')) {
  731:    $error.="\nInvalid Role";
  732: }
  733: 
  734: if (!defined($primaryLibServer)) {
  735:    if (@libservers > 0) {
  736:        $error .= "No primary library server ID designated. Choose from: ".join(',',sort(@libservers));
  737:    } else {
  738:        $error .= "No library servers in this domain (including current server)";
  739:    }
  740: } else {
  741:    if (length($primaryLibServer)>35) { $error.="\nPrimary Library Server ID:  $primaryLibServer too long"; }
  742:    if (length($primaryLibServer)<2) { $error.="\nPrimary Library Server ID:  $primaryLibServer too short"; }
  743:    if ($primaryLibServer =~/capa/i) {
  744:         if ($primaryLibServer!~/^oucapa\d+$/ &&
  745:             ($primaryLibServer!~/^capa\d+$/ && $perlvar{'lonDefDomain'} eq 'uwsp')) {
  746:                  $error.="\nPrimary library server ID $primaryLibServer contains 'capa'";
  747:         }
  748:    }
  749:    foreach my $bad ('res','raw','userfiles','priv','adm','uploaded',
  750:         'editupload') {
  751:       $error.="\nPrimary library server ID $primaryLibServer reserved." if $primaryLibServer eq $bad;
  752:    }
  753:    if ($primaryLibServer=~/[^\w\-.]/) { $error.="\nPrimary library server ID $primaryLibServer contains special characters"; }
  754: }
  755: 
  756: 
  757: if ($error) { print "\n*** ERRORS: $error\n"; }
  758:   print(&lt;&lt;END);
  759: ENTER A CHOICE OF 1-11 TO CHANGE, otherwise ENTER 12:
  760: END
  761: my $choice=&lt;&gt;;
  762: chomp($choice);
  763:   if ($choice==1) {
  764:   print(&lt;&lt;END);
  765: 1) Domain Name: $perlvar{'lonDefDomain'}
  766: ENTER NEW VALUE (this is an internal value used to identify a group of
  767:                  LON-CAPA machines, it must be alphanumerical, we suggest
  768:                  using a part of your actual DNS domain. For example, for
  769:                  the machine loncapa.msu.edu, we set the Domain to msu):
  770: END
  771:     my $choice2=&lt;&gt;;
  772:     chomp($choice2);
  773:     $perlvar{'lonDefDomain'}=$choice2;
  774:   }
  775:   elsif ($choice==2) {
  776:   print(&lt;&lt;END);
  777: 2) Domain Description: $domainDescription
  778: ENTER NEW VALUE (this should be a string that describes your domain, spaces
  779:                  and punctuation are fine except for ':'):
  780: END
  781:     my $choice2=&lt;&gt;;
  782:     chomp($choice2);
  783:     $domainDescription=$choice2;
  784:   }
  785:   elsif ($choice==3) {
  786:   print(&lt;&lt;END);
  787: 3) Machine Name: $perlvar{'lonHostID'}
  788: ENTER NEW VALUE (this will be the name of the machine in the LON-CAPA network
  789:                  it cannot contain any of '_' '-' '.' or ':'. We suggest that
  790:                  if you are in the domain 'example' and are the first library
  791:                  server you enter 'examplel1') :
  792: END
  793:     my $choice2=&lt;&gt;;
  794:     chomp($choice2);
  795:     $perlvar{'lonHostID'}=$choice2;
  796:   }
  797:   elsif ($choice==4) {
  798:   print(&lt;&lt;END);
  799: 4) ID of primary library server for domain: $primaryLibServer
  800: ENTER NEW VALUE (this will be the LON-CAPA Machine ID of a library server in
  801:                  your domain; it cannot contain any of '_' '-' '.' or ':'. 
  802:                  This server will be where domain data which are not 
  803:                  associated with any specific home library server
  804:                  will be stored (e.g., e-mail broadcast by Domain Coordinators
  805:                  to users in the domain).
  806: END
  807:     my $choice2=&lt;&gt;;
  808:     chomp($choice2);
  809:     $primaryLibServer=$choice2;
  810:   }
  811:   elsif ($choice==5) {
  812:   print(&lt;&lt;END);
  813: 5) Server Administrator's E-mail Address: $perlvar{'lonAdmEMail'}
  814: ENTER NEW VALUE:
  815: END
  816:     my $choice2=&lt;&gt;;
  817:     chomp($choice2);
  818:     $perlvar{'lonAdmEMail'}=$choice2;
  819:   }
  820:   elsif ($choice==6) {
  821:   print(&lt;&lt;END);
  822: 6) Support E-mail Address: $perlvar{'lonSupportEMail'}
  823: ENTER NEW VALUE:
  824: END
  825:     my $choice2=&lt;&gt;;
  826:     chomp($choice2);
  827:     $perlvar{'lonSupportEMail'}=$choice2;
  828:   }
  829:   elsif ($choice==7) {
  830:   print(&lt;&lt;END);
  831: 7) Role: $perlvar{'lonRole'}
  832: ENTER NEW VALUE (this should be either 'access' or 'library' 
  833:                  if in doubt select 'library'):
  834: END
  835:     my $choice2=&lt;&gt;;
  836:     chomp($choice2);
  837:     $perlvar{'lonRole'}=$choice2;
  838:   }
  839:   elsif ($choice==8) {
  840:   print(&lt;&lt;END);
  841: 8) Cache Expiration Time: $perlvar{'lonExpire'}
  842: ENTER NEW VALUE (in seconds, 86400 is a reasonable value):
  843: END
  844:     my $choice2=&lt;&gt;;
  845:     chomp($choice2);
  846:     $perlvar{'lonExpire'}=$choice2;
  847:   }
  848:   elsif ($choice==9) {
  849:   print(&lt;&lt;END);
  850: 9) Server Load: $perlvar{'lonLoadLim'}
  851: ENTER NEW VALUE:
  852: END
  853:     my $choice2=&lt;&gt;;
  854:     chomp($choice2);
  855:     $perlvar{'lonLoadLim'}=$choice2;
  856:   }
  857:   elsif ($choice==10) {
  858:   print(&lt;&lt;END);
  859: 10) User Load: $perlvar{'lonUserLoadLim'}
  860: Numer of users that can login before machine is 'overloaded'
  861: ENTER NEW VALUE (integer value, 0 means there is no limit):
  862: END
  863:     my $choice2=&lt;&gt;;
  864:     chomp($choice2);
  865:     $perlvar{'lonUserLoadLim'}=$choice2;
  866:   }
  867:   elsif ($choice==11) {
  868:   print(&lt;&lt;END);
  869: 11) Allow only secure connections: $securestatus 
  870: The Lon-CAPA communication daemons lonc and lond can be configured to
  871: allow only secure connections by default.
  872: 
  873: POSSIBLE CHOICES:
  874: 1) allow only secure connections and don't connect to machines that
  875:     can not be connected to securely
  876: 2) allow only secure connections but allow this machine to connect to 
  877:     machines that don't support secure connections
  878: 3) allow insecure connections to this machine but only allow connections
  879:     to machines that support secure connections
  880: 4) allow insecure connections
  881: ENTER NEW VALUE (currenly $securenum):
  882: END
  883:     my $choice2=&lt;&gt;;
  884:     chomp($choice2);
  885:     if      ($choice2 eq '1') {
  886: 	$perlvar{'loncAllowInsecure'}=0;$perlvar{'londAllowInsecure'}=0;
  887:     } elsif ($choice2 eq '2') {
  888: 	$perlvar{'loncAllowInsecure'}=0;$perlvar{'londAllowInsecure'}=1;
  889:     } elsif ($choice2 eq '3') {
  890: 	$perlvar{'loncAllowInsecure'}=1;$perlvar{'londAllowInsecure'}=0;
  891:     } elsif ($choice2 eq '4') {
  892: 	$perlvar{'loncAllowInsecure'}=1;$perlvar{'londAllowInsecure'}=1;
  893:     }
  894:     ($securestatus,$securenum)=&securesetting(%perlvar);
  895:   }
  896:   elsif (($choice==12) && (!$error)) {
  897:     $flag=1;
  898:   }
  899:   else {
  900:     print "Invalid input.\n";
  901:   }
  902: }
  903:     open(OUT,"&gt;$confdir$filename") or
  904:       die("Cannot output to $confdir$filename\n");
  905:     foreach my $key (keys %perlvar) {
  906:       my $value=$perlvar{$key};
  907:       my $line = "PerlSetVar     $key      $value";
  908:       if ($value eq '') {
  909:           $line = '#'.$line;
  910:       }
  911:       print(OUT &lt;&lt;END) unless $perlvarstatic{$key};
  912: $line
  913: END
  914:     }
  915:     close(OUT);
  916: </perlscript>
  917: </file>
  918: <file>
  919: <target dist='default'>loncom/hosts.tab</target>
  920: <perlscript mode='fg'>
  921: unless (-l "<TARGET />") {
  922:   my $hostname=`hostname -f`;chomp($hostname);
  923:   $date=`date -I`; chomp($date);
  924:   $lonHostID=$perlvar{'lonHostID'};
  925:   $lonHostID=~s/[^\w\-.]//g;
  926:   $lineexistflag=0;
  927:   $hostidexistflag=0;
  928:   $line2insert=&lt;&lt;END;
  929: $perlvar{'lonHostID'}:$perlvar{'lonDefDomain'}:$perlvar{'lonRole'}:$hostname
  930: END
  931:   $domaininsert="$perlvar{'lonDefDomain'}:$domainDescription:$domainTabExtras:$primaryLibServer\n";
  932:   if ($lonCluster eq 'standalone') {
  933:     open(OUT,'&gt;../'.$lonCluster.'_hosts.tab') or
  934:       die('file generation error');
  935:       print(OUT $line2insert);
  936:       print OUT ("^$hostname\n");
  937:     close(OUT);
  938:     open(OUT,'&gt;../'.$lonCluster.'_dns_hosts.tab') or
  939:       die('file generation error');
  940:       print(OUT $line2insert);
  941:     close(OUT);
  942:     open(OUT,'&gt;../'.$lonCluster.'_domain.tab') or
  943:       die('file generation error');
  944:       print(OUT $domaininsert);
  945:     close(OUT);
  946:     open(OUT,'&gt;../'.$lonCluster.'_dns_domain.tab') or
  947:       die('file generation error');
  948:       print(OUT $domaininsert);
  949:     close(OUT);
  950:   }
  951:   if ($flag==1) {
  952:     `rm -f ../hosts.tab`;
  953:     `rm -f ../dns_hosts.tab`;
  954:     `ln -s ${lonCluster}_dns_hosts.tab ../dns_hosts.tab`;
  955:     open(IN,'&lt;../'.$lonCluster.'_dns_hosts.tab');
  956:     while(my $line = &lt;IN&gt;) {
  957:       if ($line =~ /^\Q$line2insert\E$/) {
  958:         $lineexistflag=1;
  959:       }
  960:       if ($line =~ /^\Q$lonHostID\E\:/) {
  961:         $hostidexistflag=1;
  962:       }
  963:     }
  964:     close(IN);
  965:     if ($hostidexistflag and !$lineexistflag) {
  966:       print &lt;&lt;END;
  967: WARNING: $lonHostID already exists inside
  968: loncapa/loncom/${lonCluster}_dns_hosts.tab.  The entry inside
  969: ${lonCluster}_dns_hosts.tab does not match your settings.
  970: An entry inside ${lonCluster}_hosts.tab will be made
  971: with your new values.
  972: END
  973:       `grep -v "$lonHostID:" ../${lonCluster}_hosts.tab &gt; ../new_${lonCluster}_hosts.tab`;
  974:        open(OUT,'&gt;&gt;../new_'.$lonCluster.'_hosts.tab') or
  975:          die("cannot open loncom/${lonCluster}_hosts.tab for output\n");
  976:          print(OUT $line2insert);
  977:        close(OUT);
  978:       `ln -s new_${lonCluster}_hosts.tab ../hosts.tab`;
  979:       # email appropriate message
  980:       `echo "REPLACE:$lonCluster:$lonHostID:$date:$line2insert" | mail -s "REPLACE:$lonCluster:$lonHostID:$date" installrecord\@mail.lon-capa.org`;
  981:     }
  982:     elsif ($hostidexistflag and $lineexistflag) {
  983:       print &lt;&lt;END;
  984: Entry exists in ${lonCluster}_dns_hosts.tab. Making duplicate entry in ${lonCluster}_hosts.tab
  985: END
  986:       `grep -v "$lonHostID:" ../${lonCluster}_hosts.tab &gt; ../new_${lonCluster}_hosts.tab`;
  987:        open(OUT,'&gt;&gt;../new_'.$lonCluster.'_hosts.tab') or
  988:          die("cannot open loncom/${lonCluster}_hosts.tab for output\n");
  989:          print(OUT $line2insert);
  990:        close(OUT);
  991:       `ln -s new_${lonCluster}_hosts.tab ../hosts.tab`;
  992:       # email appropriate message
  993:       `echo "STABLEUPDATE:$lonCluster:$lonHostID:$date:$line2insert" | mail -s "STABLEUPDATE:$lonCluster:$lonHostID:$date" installrecord\@mail.lon-capa.org`;
  994:     }
  995:     elsif (!$hostidexistflag and !$lineexistflag) {
  996:       print &lt;&lt;END;
  997: New entry for $lonCluster.
  998: END
  999:       `cat ../${lonCluster}_hosts.tab &gt; ../new_${lonCluster}_hosts.tab`;
 1000:        open(OUT,'&gt;&gt;../new_'.$lonCluster.'_hosts.tab') or
 1001:          die("cannot open loncom/new_${lonCluster}_hosts.tab for output\n");
 1002:          print(OUT $line2insert);
 1003:        close(OUT);
 1004:       `ln -s new_${lonCluster}_hosts.tab ../hosts.tab`;
 1005:       # email appropriate message
 1006:       `echo "INSERT:$lonCluster:$lonHostID:$date:$line2insert" | mail -s "INSERT:$lonCluster:$lonHostID:$date" installrecord\@mail.lon-capa.org`;
 1007:     }
 1008:   }
 1009:   $lineexistflag=0;
 1010:   if ($flag==1) {
 1011:     `rm -f ../domain.tab`;
 1012:     `rm -f ../dns_domain.tab`;
 1013:     `ln -s ${lonCluster}_dns_domain.tab ../dns_domain.tab`;
 1014:     open(IN,'&lt;../'.$lonCluster.'_dns_domain.tab');
 1015:     while(my $line = &lt;IN&gt;) {
 1016:       if ($line =~/^\Q$domaininsert\E$/) {
 1017:         $lineexistflag=1;
 1018:       }
 1019:       if ($line =~/^\Q$perlvar{'lonDefDomain'}\E\:/) {
 1020:         $domainexistflag=1;
 1021:       }
 1022:     }
 1023:     close(IN);
 1024:     if ($domainexistflag and !$lineexistflag) {
 1025:       print &lt;&lt;END;
 1026: WARNING: $perlvar{'lonDefDomain'} already exists inside
 1027: loncapa/loncom/${lonCluster}_dns_domain.tab.  The entry inside
 1028: ${lonCluster}_dns_domain.tab does not match your settings.
 1029: An entry will be made in inside ${lonCluster}_domain.tab
 1030: with your new values.
 1031: END
 1032:       `grep -v "$perlvar{'lonDefDomain'}:" ../${lonCluster}_domain.tab &gt; ../new_${lonCluster}_domain.tab`;
 1033:        open(OUT,'&gt;&gt;../new_'.$lonCluster.'_domain.tab') or
 1034:          die("cannot open loncom/${lonCluster}_domain.tab for output\n");
 1035:          print(OUT $domaininsert);
 1036:        close(OUT);
 1037:       `ln -s new_${lonCluster}_domain.tab ../domain.tab`;
 1038:       # email appropriate message
 1039:       `echo "REPLACEdom:$lonCluster:$lonHostID:$date:$domaninsert" | mail -s "REPLACEdom:$lonCluster:$lonHostID:$date" installrecord\@mail.lon-capa.org`;
 1040:     }
 1041:     elsif ($domainexistflag and $lineexistflag) {
 1042:       `grep -v "$perlvar{'lonDefDomain'}:" ../${lonCluster}_domain.tab &gt; ../new_${lonCluster}_domain.tab`;
 1043:        open(OUT,'&gt;&gt;../new_'.$lonCluster.'_domain.tab') or
 1044:          die("cannot open loncom/${lonCluster}_domain.tab for output\n");
 1045:          print(OUT $domaininsert);
 1046:        close(OUT);
 1047:       print &lt;&lt;END;
 1048: Entry exists in ${lonCluster}_dns_domain.tab. Making duplicate entry in ${lonCluster}_domain.tab
 1049: END
 1050:       `ln -s new_${lonCluster}_domain.tab ../domain.tab`;
 1051:       # email appropriate message
 1052:       `echo "STABLEUPDATEdom:$lonCluster:$lonHostID:$date:$domaininsert" | mail -s "STABLEUPDATEdom:$lonCluster:$lonHostID:$date" installrecord\@mail.lon-capa.org`;
 1053:     }
 1054:     elsif (!$domainexistflag and !$lineexistflag) {
 1055:       print &lt;&lt;END;
 1056: New entry for $lonCluster.
 1057: END
 1058:       `cat ../${lonCluster}_domain.tab &gt; ../new_${lonCluster}_domain.tab`;
 1059:        open(OUT,'&gt;&gt;../new_'.$lonCluster.'_domain.tab') or
 1060:          die("cannot open loncom/new_${lonCluster}_domain.tab for output\n");
 1061:          print(OUT $domaininsert);
 1062:        close(OUT);
 1063:       `ln -s new_${lonCluster}_domain.tab ../domain.tab`;
 1064:       # email appropriate message
 1065:       `echo "INSERTdom:$lonCluster:$lonHostID:$date:$domaininsert" | mail -s "INSERTdom:$lonCluster:$lonHostID:$date" installrecord\@mail.lon-capa.org`;
 1066:     }
 1067:   }
 1068: }
 1069: </perlscript>
 1070: </file>
 1071: </files>
 1072: </piml>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>