[LON-CAPA-cvs] cvs: doc /install/redhat7.3 install.pl
harris41
lon-capa-cvs@mail.lon-capa.org
Sun, 21 Jul 2002 15:42:04 -0000
harris41 Sun Jul 21 11:42:04 2002 EDT
Modified files:
/doc/install/redhat7.3 install.pl
Log:
synchronizing with the file-based distribution scheme of versions
Index: doc/install/redhat7.3/install.pl
diff -u doc/install/redhat7.3/install.pl:1.4 doc/install/redhat7.3/install.pl:1.5
--- doc/install/redhat7.3/install.pl:1.4 Tue Jul 2 09:46:15 2002
+++ doc/install/redhat7.3/install.pl Sun Jul 21 11:42:04 2002
@@ -2,7 +2,7 @@
# The LearningOnline Network
# Red Hat 7.3 installation script
#
-# $Id: install.pl,v 1.4 2002/07/02 13:46:15 matthew Exp $
+# $Id: install.pl,v 1.5 2002/07/21 15:42:04 harris41 Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -425,23 +425,23 @@
##
## Retrieve loncapa.tar.gz
##
-if (! -e "$instdir/loncapa.tar.gz") {
+if (! -e "$instdir/loncapa-current.tar.gz") {
print_and_log("Retrieving LON-CAPA source files from install.loncapa.org\n");
- system("wget http://install.loncapa.org/versions/current/loncapa.tar.gz 2>/dev/null 1>/dev/null");
- if (! -e "./loncapa.tar.gz") {
+ system("wget http://install.loncapa.org/versions/loncapa-current.tar.gz 2>/dev/null 1>/dev/null");
+ if (! -e "./loncapa-current.tar.gz") {
die("Unable to retrieve LON-CAPA source files from\n".
- "http://install.loncapa.org/versions/current/loncapa.tar.gz\n");
+ "http://install.loncapa.org/versions/loncapa-current.tar.gz\n");
}
print_and_log("\n");
} else {
print_and_log(<<"END");
------------------------------------------------------------------------
-You seem to have a version of loncapa.tar.gz in $instdir.
+You seem to have a version of loncapa-current.tar.gz in $instdir.
This copy will be used and a new version will NOT be downloaded.
If you wish, you may download a new version by executing:
-wget http://install.loncapa.org/versions/current/loncapa.tar.gz
+wget http://install.loncapa.org/versions/loncapa-current.tar.gz
------------------------------------------------------------------------
END
@@ -451,7 +451,7 @@
## untar loncapa.tar.gz
##
print_and_log("Extracting LON-CAPA source files\n");
-writelog(`cd ~root; tar zxf $instdir/loncapa.tar.gz`);
+writelog(`cd ~root; tar zxf $instdir/loncapa-current.tar.gz`);
print_and_log("\n");
my $version = `cat /etc/redhat-release`;
@@ -474,11 +474,11 @@
All of the extra files seem to have been installed correctly. It remains for
you to execute the following commands:
-cd /root/loncapa;
+cd /root/loncapa-N.N; (N.N should correspond to a version number like '0.4')
./UPDATE
-If you have any trouble, please see http://install.loncapa.org and
-http://help.loncapa.org.
+If you have any trouble, please see http://install.loncapa.org/ and
+http://help.loncapa.org/.
ENDMSG
}