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

1.1       matthew     1: <!DOCTYPE piml PUBLIC "-//TUX/DTD piml 1.0 Final//EN" 
                      2: 	"http://lpml.sourceforge.net/DTD/piml.dtd">
                      3: <!-- phpcheck.piml -->
                      4: <!-- Matthew Hall -->
                      5: 
1.6     ! raeburn     6: <!-- $Id: chkconfig.piml,v 1.5 2007/04/22 16:33: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>
                     36: <target dist="default">/home/httpd/lonUsers</target>
                     37: <perlscript mode="fg">
                     38: my $chkconfig_bin = '/sbin/chkconfig';
                     39: exit if (! -x $chkconfig_bin);
                     40: 
1.2       raeburn    41: my $webserver = 'httpd';
                     42: my @runlevels = qw/3 4 5/;
                     43: if ('<DIST />' eq 'suse9.3' || '<DIST />' eq 'suse9.2' || '<DIST />' eq 'sles9') {
                     44:     $webserver = 'apache';
                     45:     @runlevels = qw/3 5/;
1.6     ! raeburn    46: } elsif ('<DIST />' eq 'sles10' || '<DIST />' eq 'suse10.1' || '<DIST />' eq 'suse10.2' || '<DIST />' eq 'suse10.3') {
1.3       raeburn    47:     $webserver = 'apache2';
1.2       raeburn    48: }
                     49: my $command = $chkconfig_bin.' --list '.$webserver;
1.1       matthew    50: my $results = `$command`;
                     51: if ($results eq '') {
1.2       raeburn    52:     print "**** WARNING: $webserver is not set to run on boot.$/".
1.1       matthew    53:         "    Execute the following commands to fix this:".$/.
1.2       raeburn    54:         "        $chkconfig_bin --add $webserver".$/.
                     55:         "        $chkconfig_bin $webserver on".$/;
1.1       matthew    56: } else {
                     57:     my %httpd_runlevels;
                     58:     for (my $rl = 0;$rl &lt;=6;$rl++) {
                     59:         if ($results =~ /$rl:on/) { $httpd_runlevels{$rl}++; }
                     60:     }
                     61:     #
                     62:     my $warning;
1.2       raeburn    63:     foreach my $rl (@runlevels) {
1.1       matthew    64:         if (! exists($httpd_runlevels{$rl}) ) {
                     65:             $warning .= 
1.2       raeburn    66:                "**** WARNING: $webserver is not set to run at runlevel $rl".$/;
1.1       matthew    67:         }
                     68:     }
                     69:     if ($warning) {
                     70:         print $warning.
                     71:             "    Execute the following command to fix this:".$/.
1.2       raeburn    72:             "        /sbin/chkconfig $webserver on ".$/;
1.1       matthew    73:     }
                     74: }
                     75: 
                     76: $command = $chkconfig_bin.' --list loncontrol';
                     77: $results = `$command`;
                     78: if ($results eq '') {
                     79:     print "**** WARNING: loncontrol is not set to run on boot.$/".
                     80:         "    Execute the following commands to fix this:".$/.
                     81:         "        $chkconfig_bin --add loncontrol".$/.
                     82:         "        $chkconfig_bin loncontrol on".$/;
                     83: } else {
                     84:     my %loncontrol_runlevels;
                     85:     for (my $rl = 0;$rl&lt;=6;$rl++) {
                     86:         if ($results =~ /$rl:on/) { $loncontrol_runlevels{$rl}++; }
                     87:     }
                     88:     #
                     89:     $warning = '';
1.2       raeburn    90:     foreach my $rl (@runlevels) {
1.1       matthew    91:         if (! exists($loncontrol_runlevels{$rl})) {
                     92:             $warning .= 
                     93:                 "**** WARNING: loncontrol is not set to run at runlevel $rl\n";
                     94:         }
                     95:     }
                     96:     if ($warning) {
                     97:         print $warning.
                     98:             "    Execute the following command to fix this:".$/.
                     99:             "        /sbin/chkconfig loncontrol on ".$/;
                    100:     }
                    101: }
                    102: 
                    103: </perlscript>
                    104: </file>
                    105: </files>
                    106: </piml>

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