Diff for /loncom/lond between versions 1.149 and 1.150

version 1.149, 2003/09/30 09:44:13 version 1.150, 2003/09/30 10:16:06
Line 60 Line 60
 # 09/08/2003 Ron Fox:  Told lond to take care of change logging so we  # 09/08/2003 Ron Fox:  Told lond to take care of change logging so we
 #      don't have to remember it:  #      don't have to remember it:
 # $Log$  # $Log$
   # Revision 1.150  2003/09/30 10:16:06  foxr
   # Added invocation of apachereload in ReloadApache sub.
   # This completes the addtion of the reinit functionality.
   #
 # Revision 1.149  2003/09/30 09:44:13  foxr  # Revision 1.149  2003/09/30 09:44:13  foxr
 # Tested UpdateHosts ability to  # Tested UpdateHosts ability to
 # - Remove live children for hosts that are no longer in the hosts.tab  # - Remove live children for hosts that are no longer in the hosts.tab
Line 588  sub ReadHostTable { Line 592  sub ReadHostTable {
 }  }
 #  #
 #  Reload the Apache daemon's state.  #  Reload the Apache daemon's state.
   #  This is done by invoking /home/httpd/perl/apachereload
   #  a setuid perl script that can be root for us to do this job.
 #  #
 sub ReloadApache {  sub ReloadApache {
       my $execdir = $perlvar{'lonDaemons'};
       my $script  = $execdir."/apachereload";
       system($script);
 }  }
   
 #  #

Removed from v.1.149  
changed lines
  Added in v.1.150


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