Diff for /loncom/build/Attic/postinstall.pl between versions 1.10 and 1.12

version 1.10, 2000/12/28 17:33:00 version 1.12, 2000/12/28 23:52:32
Line 22  system('wget','-r','-np','http://install Line 22  system('wget','-r','-np','http://install
 system('sh','./remove_extra.sh');  system('sh','./remove_extra.sh');
   
 # download FinalRPMS and install  # download FinalRPMS and install
 system('wget','-r','http://install.lon-capa.org/3.1/FinalRPMS');  system('wget','-r','-np','http://install.lon-capa.org/3.1/FinalRPMS');
 system('rpm -Uvh --force install.lon-capa.org/3.1/FinalRPMS/*.rpm');  system('rpm -Uvh --force install.lon-capa.org/3.1/FinalRPMS/*.rpm');
   
 my $okay=0;  my $okay=0;
Line 39  DEV: while ($okay==0) { Line 39  DEV: while ($okay==0) {
 if (!$okay) {  if (!$okay) {
     system('wget','http://install.lon-capa.org/3.1/scripts/remove_extra_dev.sh');      system('wget','http://install.lon-capa.org/3.1/scripts/remove_extra_dev.sh');
     system('sh','./remove_extra_dev.sh');      system('sh','./remove_extra_dev.sh');
       $template=`/bin/cat /etc/inittab`;
       $template=~s|id:5:initdefault:|id:3:initdefault:|;
       open OUT, ">/etc/inittab";
       print OUT $template;
       close OUT;
 }  }
   
 # allow entry of new access.conf parameters  # allow entry of new access.conf parameters

Removed from v.1.10  
changed lines
  Added in v.1.12


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