--- loncom/build/Attic/loncapaautoupgrade 2000/10/26 04:29:34 1.1 +++ loncom/build/Attic/loncapaautoupgrade 2000/10/26 04:40:25 1.2 @@ -12,29 +12,29 @@ use strict; # Download most recent LON-CAPA RPM -`/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 -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 -`/etc/rc.d/init.d/loncontrol stop` +print `/etc/rc.d/init.d/loncontrol stop`; # Update downloaded RPM -`/bin/rpm -Uvh --force /tmp/LON-CAPA-base-3.1-1.i386.rpm`; +print `/bin/rpm -Uvh --force /tmp/LON-CAPA-base-3.1-1.i386.rpm`; # Restore configuration values -`/usr/sbin/loncaparestoreconfigurations`; +print `/usr/sbin/loncaparestoreconfigurations`; # Start LON-CAPA -`/etc/rc.d/init.d/loncontrol start`; +print `/etc/rc.d/init.d/loncontrol start`; # Verify base files and packages -`/usr/sbin/loncapaverify`; +print `/usr/sbin/loncapaverify`; # Remove downloaded RPM -`/bin/rm -f /tmp/LON-CAPA-base-3.1-1.i386.rpm`; +print `/bin/rm -f /tmp/LON-CAPA-base-3.1-1.i386.rpm`;