[LON-CAPA-cvs] cvs: doc /loncapafiles updatequery.piml
harris41
lon-capa-cvs@mail.lon-capa.org
Fri, 03 May 2002 02:06:45 -0000
harris41 Thu May 2 22:06:45 2002 EDT
Added files:
/doc/loncapafiles updatequery.piml
Log:
still BROKEN (not fully operational; preliminary development)
BUG ID: 327
the user should be queried for machine configuration values
when updating software
Index: doc/loncapafiles/updatequery.piml
+++ doc/loncapafiles/updatequery.piml
<!-- sanitycheck.piml -->
<!-- Scott Harrison -->
<!-- $Id: updatequery.piml,v 1.1 2002/05/03 02:06:45 harris41 Exp $ -->
<!--
This file is part of the LearningOnline Network with CAPA (LON-CAPA).
LON-CAPA is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
LON-CAPA is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with LON-CAPA; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
/home/httpd/html/adm/gpl.txt
http://www.lon-capa.org/
-->
<piml>
<targetroot>/</targetroot>
<files>
<file>
<target dist='default'>/home/httpd/lonUsers2</target>
<perlscript mode='fg'>
print(<<END);
*********************************************
*********************************************
**** ****
**** LON-CAPA SYSTEM INFORMATION REQUEST ****
**** ****
**** Please respond to the choices below ****
**** ****
*********************************************
*********************************************
END
</perlscript>
</file>
<file>
<target dist='default'>/home/httpd/lonUsers2</target>
<perlscript mode='fg'>
unless (-e "<TARGET />") {
print(<<END);
WELCOME TO LON-CAPA!
If you have questions, please visit http://install.lon-capa.org
or contact sharrison@install.lon-capa.org.
===============================================================================
The following 3 values are needed to configure LON-CAPA:
* Machine ID Name
* LON-CAPA Domain Name, and
* System Administration E-mail Address.
END
print(<<END);
**** Machine ID Name ****
[this does NOT need to correspond to internet address names;
this name MUST be unique to the whole LON-CAPA network;
we recommend that you use a name based off of your institution;
good examples: "msul1" or "bionetl1";
bad examples: "loncapabox" or "studentsinside"]
ENTER MACHINE ID NAME:
END
# get machine name
# accept if valid, if not valid, tell user and repeat
print(<<END);
**** Domain ****
[this does NOT need to correspond to internet address domains,
examples might be "msu" or "bionet" or "vermontcc"]
ENTER LONCAPA DOMAIN:
END
# get domain name
# accept if valid, if not valid, tell user and repeat
print(<<END);
**** System Administrator's E-mail ****
E-mail address of the person who will manage this machine
[should be in the form somebody@somewhere]
ENTER E-MAIL ADDRESS:
END
# get e-mail address
# accept if valid, if not valid, tell user and repeat
# update loncapa.conf
}
</perlscript>
</file>
<file>
<target dist='default'>/home/httpd/lonUsers2</target>
<perlscript mode='fg'>
# read values from loncapa.conf
print(<<END);
===============================================================================
This is now the current configuration of your machine.
1) Machine Name: $perlsetvar{'lonHostID'}
2) Domain Name: $perlsetvar{'lonDefDomain'}
3) System Administrator's E-mail Address: $perlsetvar{'lonAdmEmail'}
4) Role: $perlsetvar{'lonRole'}
5) Cache Expiration Time: $perlsetvar{'lonExpire'}
6) Server Load: $perlsetvar{'lonLoadLim'}
7) Everything is correct up above
ENTER A CHOICE OF 1-6 TO CHANGE, otherwise ENTER 7:
END
# implement editing logic below, interactively
# update loncapa.conf until 7 is entered
</perlscript>
</file>
<file>
<target dist='default'>loncom/hosts.tab</target>
<perlscript mode='fg'>
unless (-l "<TARGET />") {
print(<<END);
===============================================================================
What hosts.tab would you like to have installed?
(hosts.tab is a listing of all other internet machines
that a server system considers to be valid server systems
on the LON-CAPA network)
1) PRODUCTION - you want to deliver courses today or sometime very soon
on this machine
2) DEVELOPMENT - you want to play with or explore LON-CAPA
3) Do not install hosts.tab right now
ENTER 1, 2, or 3:
END
# Option number 26 will install rawhide_hosts.tab, but
# the typical user does not want to be part of an intensive
# machine test cluster.
# get input
# if valid then process, otherwise loop
}
</perlscript>
</file>
</files>
</piml>