Return to loncapaautoupgrade CVS log | Up to [LON-CAPA] / loncom / build |
version 1.2, 2000/10/26 04:40:25 | version 1.4, 2000/10/27 18:06:31 |
---|---|
Line 12 use strict; | Line 12 use strict; |
# Download most recent LON-CAPA RPM | # Download most recent LON-CAPA RPM |
print `/usr/bin/lynx -source http://install.lon-capa.org/3.1/loncapafiles/LON-CAPA-base-3.1-1.i386.rpm > /tmp/LON-CAPA-base-3.1-1.i386.rpm`; | print `/usr/bin/lynx -term xterm -source http://install.lon-capa.org/3.1/loncapafiles/LON-CAPA-base-3.1-1.i386.rpm > /tmp/LON-CAPA-base-3.1-1.i386.rpm`; |
# Stop LON-CAPA | # Stop LON-CAPA |
print `/etc/rc.d/init.d/loncontrol stop`; | print "Stopping LON-CAPA and Apache\n"; |
system("/etc/rc.d/init.d/loncontrol stop"); | |
system("/etc/rc.d/init.d/httpd stop"); | |
# Update downloaded RPM | # Update downloaded RPM |
Line 28 print `/usr/sbin/loncaparestoreconfigura | Line 30 print `/usr/sbin/loncaparestoreconfigura |
# Start LON-CAPA | # Start LON-CAPA |
print `/etc/rc.d/init.d/loncontrol start`; | print "Starting LON-CAPA and Apache (be patient please)\n"; |
system("/etc/rc.d/init.d/loncontrol start"); | |
system("/etc/rc.d/init.d/httpd start"); | |
# Verify base files and packages | # Verify base files and packages |