File:  [LON-CAPA] / doc / loncapafiles / chkconfig.piml
Revision 1.8: download - view: text, annotated - select for diffs
Tue Jul 14 12:26:29 2009 UTC (14 years, 9 months ago) by raeburn
Branches: MAIN
CVS tags: HEAD
- Merge functionality from sysv-rc-conf.piml (used fro debian/ubuntu) into chkconfig.piml.
- Eliminate duplicated code for separate checks for webserver and loncontrol.

    1: <!DOCTYPE piml PUBLIC "-//TUX/DTD piml 1.0 Final//EN" 
    2: 	"http://lpml.sourceforge.net/DTD/piml.dtd">
    3: <!-- checkconfig.piml -->
    4: <!-- Matthew Hall -->
    5: 
    6: <!-- $Id: chkconfig.piml,v 1.8 2009/07/14 12:26:29 raeburn Exp $ -->
    7: 
    8: <!--
    9: 
   10: This file is part of the LearningOnline Network with CAPA (LON-CAPA).
   11: 
   12: LON-CAPA is free software; you can redistribute it and/or modify
   13: it under the terms of the GNU General Public License as published by
   14: the Free Software Foundation; either version 2 of the License, or
   15: (at your option) any later version.
   16: 
   17: LON-CAPA is distributed in the hope that it will be useful,
   18: but WITHOUT ANY WARRANTY; without even the implied warranty of
   19: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   20: GNU General Public License for more details.
   21: 
   22: You should have received a copy of the GNU General Public License
   23: along with LON-CAPA; if not, write to the Free Software
   24: Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
   25: 
   26: /home/httpd/html/adm/gpl.txt
   27: 
   28: http://www.lon-capa.org/
   29: 
   30: -->
   31: 
   32: <piml>
   33: <targetroot>/</targetroot>
   34: <files>
   35: <file>
   36: <target dist="default"></target>
   37: <perlscript mode="fg">
   38: my $checker_bin = '/sbin/chkconfig';
   39: my $webserver ='httpd';
   40: my @services = ('apache2','loncontrol');
   41: my @runlevels = qw/3 4 5/;
   42: my $rlstr = join('',@runlevels);
   43: 
   44: if ('<DIST />' eq 'suse9.3' || '<DIST />' eq 'suse9.2' || '<DIST />' eq 'sles9') {
   45:     $checker_bin = '/';
   46:     $webserver = 'apache';
   47:     @runlevels = qw/3 5/;
   48: } elsif ('<DIST />' eq 'sles10' || '<DIST />' eq 'suse10.1' || '<DIST />' eq 'suse10.2' || '<DIST />' eq 'suse10.3' || '<DIST />' eq 'suse11.1') {
   49:     $webserver = 'apache2';
   50: } elsif ('<DIST />' eq 'debian5' ||  '<DIST />' eq 'ubuntu6' ||  '<DIST />' eq 'ubuntu8') {
   51:     $checker_bin = '/usr/sbin/sysv-rc-conf';
   52:     $webserver = 'apache2';
   53: }
   54: exit if (! -x $checker_bin);
   55: 
   56: foreach my $service (@services) {
   57:     my $command = $checker_bin.' --list '.$service;
   58:     my $results = `$command`;
   59:     if ($results eq '') {
   60:         print "**** WARNING: $service is not set to run on boot.$/".
   61:         "    Execute the following commands to fix this:".$/;
   62:         unless ('<DIST />' eq 'debian5' ||  '<DIST />' eq 'ubuntu6' ||  '<DIST />' eq 'ubuntu8') {
   63:              print "        $checker_bin --add $webserver".$/;
   64:         }
   65:         print "        $checker_bin --level $rlstr $service on".$/;
   66:     } else {
   67:         my %curr_runlevels;
   68:         for (my $rl = 0;$rl &lt;=6;$rl++) {
   69:            if ($results =~ /$rl:on/) { $curr_runlevels{$rl}++; }
   70:         }
   71:         #
   72:         my $warning;
   73:         foreach my $rl (@runlevels) {
   74:             if (! exists($curr_runlevels{$rl}) ) {
   75:                 $warning .=
   76:                    "**** WARNING: $service is not set to run at runlevel $rl".$/;
   77:             }
   78:         }
   79:         if ($warning) {
   80:             print $warning.
   81:                   "    Execute the following command to fix this:".$/.
   82:                   "        $checker_bin --level $rlstr $service on".$/;
   83:         }
   84:     }
   85: }
   86: 
   87: </perlscript>
   88: </file>
   89: </files>
   90: </piml>

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