Annotation of doc/loncapafiles/chkconfig.piml, revision 1.15

1.1       matthew     1: <!DOCTYPE piml PUBLIC "-//TUX/DTD piml 1.0 Final//EN" 
                      2: 	"http://lpml.sourceforge.net/DTD/piml.dtd">
1.8       raeburn     3: <!-- checkconfig.piml -->
1.1       matthew     4: <!-- Matthew Hall -->
                      5: 
1.15    ! raeburn     6: <!-- $Id: chkconfig.piml,v 1.14 2011/03/01 21:34:28 raeburn Exp $ -->
1.1       matthew     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>
1.8       raeburn    36: <target dist="default"></target>
1.1       matthew    37: <perlscript mode="fg">
1.8       raeburn    38: my $checker_bin = '/sbin/chkconfig';
                     39: my $webserver ='httpd';
                     40: my @runlevels = qw/3 4 5/;
1.15    ! raeburn    41: my @norunlevels = qw/0 1 6/;
1.1       matthew    42: 
1.2       raeburn    43: if ('<DIST />' eq 'suse9.3' || '<DIST />' eq 'suse9.2' || '<DIST />' eq 'sles9') {
1.8       raeburn    44:     $checker_bin = '/';
1.2       raeburn    45:     $webserver = 'apache';
                     46:     @runlevels = qw/3 5/;
1.13      raeburn    47: } elsif ('<DIST />' eq 'sles10' || '<DIST />' eq 'sles11' || '<DIST />' eq 'suse10.1' || '<DIST />' eq 'suse10.2' || '<DIST />' eq 'suse10.3' || '<DIST />' eq 'suse11.1' || '<DIST />' eq 'suse11.2' || '<DIST />' eq 'suse11.3' || '<DIST />' eq 'suse11.4') {
1.3       raeburn    48:     $webserver = 'apache2';
1.13      raeburn    49: } elsif ('<DIST />' eq 'debian5' || '<DIST />' eq 'debian6' || '<DIST />' eq 'ubuntu6' ||  '<DIST />' eq 'ubuntu8' || '<DIST />' eq 'ubuntu10') {
1.15    ! raeburn    50:     @runlevels = qw/2 3 4 5/;
        !            51:     @norunlevels = qw/0 1 6/;
1.8       raeburn    52:     $checker_bin = '/usr/sbin/sysv-rc-conf';
                     53:     $webserver = 'apache2';
1.2       raeburn    54: }
1.8       raeburn    55: exit if (! -x $checker_bin);
                     56: 
1.15    ! raeburn    57: my $rlstr = join('',@runlevels);
        !            58: my $nrlstr = join('',@norunlevels);
1.9       raeburn    59: foreach my $service ($webserver,'loncontrol') {
1.8       raeburn    60:     my $command = $checker_bin.' --list '.$service;
                     61:     my $results = `$command`;
                     62:     if ($results eq '') {
                     63:         print "**** WARNING: $service is not set to run on boot.$/".
                     64:         "    Execute the following commands to fix this:".$/;
1.15    ! raeburn    65:         if ('<DIST />' eq 'debian5' || '<DIST />' eq 'debian6' || '<DIST />' eq 'ubuntu6' ||  '<DIST />' eq 'ubuntu8' '<DIST />' eq 'ubuntu10') {
        !            66:             print "        $checker_bin --level $nrlstr $service off".$/;
        !            67:         } else {
1.8       raeburn    68:              print "        $checker_bin --add $webserver".$/;
                     69:         }
                     70:         print "        $checker_bin --level $rlstr $service on".$/;
                     71:     } else {
                     72:         my %curr_runlevels;
                     73:         for (my $rl = 0;$rl &lt;=6;$rl++) {
                     74:            if ($results =~ /$rl:on/) { $curr_runlevels{$rl}++; }
                     75:         }
                     76:         #
                     77:         my $warning;
                     78:         foreach my $rl (@runlevels) {
                     79:             if (! exists($curr_runlevels{$rl}) ) {
                     80:                 $warning .=
                     81:                    "**** WARNING: $service is not set to run at runlevel $rl".$/;
                     82:             }
1.1       matthew    83:         }
1.8       raeburn    84:         if ($warning) {
                     85:             print $warning.
                     86:                   "    Execute the following command to fix this:".$/.
                     87:                   "        $checker_bin --level $rlstr $service on".$/;
1.1       matthew    88:         }
                     89:     }
                     90: }
                     91: 
                     92: </perlscript>
                     93: </file>
                     94: </files>
                     95: </piml>

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