Diff for /doc/loncapafiles/chkconfig.piml between versions 1.8 and 1.9

version 1.8, 2009/07/14 12:26:29 version 1.9, 2009/07/14 21:05:35
Line 37  http://www.lon-capa.org/ Line 37  http://www.lon-capa.org/
 <perlscript mode="fg">  <perlscript mode="fg">
 my $checker_bin = '/sbin/chkconfig';  my $checker_bin = '/sbin/chkconfig';
 my $webserver ='httpd';  my $webserver ='httpd';
 my @services = ('apache2','loncontrol');  
 my @runlevels = qw/3 4 5/;  my @runlevels = qw/3 4 5/;
 my $rlstr = join('',@runlevels);  my $rlstr = join('',@runlevels);
   
Line 53  if ('<DIST />' eq 'suse9.3' || '<DIST /> Line 52  if ('<DIST />' eq 'suse9.3' || '<DIST />
 }  }
 exit if (! -x $checker_bin);  exit if (! -x $checker_bin);
   
 foreach my $service (@services) {  foreach my $service ($webserver,'loncontrol') {
     my $command = $checker_bin.' --list '.$service;      my $command = $checker_bin.' --list '.$service;
     my $results = `$command`;      my $results = `$command`;
     if ($results eq '') {      if ($results eq '') {

Removed from v.1.8  
changed lines
  Added in v.1.9


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