File:  [LON-CAPA] / doc / loncapafiles / chkconfig.piml
Revision 1.60: download - view: text, annotated - select for diffs
Sat Apr 27 03:28:12 2024 UTC (13 days, 12 hours ago) by raeburn
Branches: MAIN
CVS tags: version_2_12_X, HEAD
- Support Fedora 39 and Fedora 40.

    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.60 2024/04/27 03:28:12 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 $systemctl_bin = '/bin/systemctl';
   40: my $systemctl_only = 0;
   41: my $webserver ='httpd';
   42: my @runlevels = qw/3 4 5/;
   43: my @norunlevels = qw/0 1 6/;
   44: my $use_systemctl;
   45: 
   46: if ('<DIST />' eq 'suse9.3' || '<DIST />' eq 'suse9.2' || '<DIST />' eq 'sles9') {
   47:     $webserver = 'apache';
   48:     @runlevels = qw/3 5/;
   49: } elsif ('<DIST />' eq 'sles10' || '<DIST />' eq 'sles11' || '<DIST />' eq 'sles12' || '<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' || '<DIST />' eq 'suse12.1' || '<DIST />' eq 'suse12.2' || '<DIST />' eq 'suse12.3' || '<DIST />' eq 'suse13.1' || '<DIST />' eq 'suse13.2') {
   50:     $webserver = 'apache2';
   51:     @runlevels = qw/3 5/;
   52: } elsif ('<DIST />' eq 'debian5' || '<DIST />' eq 'debian6' || '<DIST />' eq 'ubuntu6' ||  '<DIST />' eq 'ubuntu8' || '<DIST />' eq 'ubuntu10' || '<DIST />' eq 'ubuntu12' || '<DIST />' eq 'ubuntu14' || '<DIST />' eq 'ubuntu16') {
   53:     @runlevels = qw/2 3 4 5/;
   54:     @norunlevels = qw/0 1 6/;
   55:     $checker_bin = '/usr/sbin/sysv-rc-conf';
   56:     $webserver = 'apache2';
   57: } elsif (('<DIST />' eq 'ubuntu18') || ('<DIST />' eq 'ubuntu20') || 
   58:          ('<DIST />' eq 'ubuntu22') || ('<DIST />' eq 'ubuntu24') || 
   59:          ('<DIST />' eq 'sles15')) {
   60:     $webserver = 'apache2';
   61:     $use_systemctl = 1;
   62:     $systemctl_only = 1;
   63: } elsif (('<DIST />' eq 'fedora26') || ('<DIST />' eq 'fedora27') ||
   64:          ('<DIST />' eq 'fedora28') || ('<DIST />' eq 'fedora29') ||
   65:          ('<DIST />' eq 'fedora30') || ('<DIST />' eq 'fedora31') ||
   66:          ('<DIST />' eq 'fedora32') || ('<DIST />' eq 'fedora33') ||
   67:          ('<DIST />' eq 'fedora34') || ('<DIST />' eq 'fedora35') || 
   68:          ('<DIST />' eq 'fedora36') || ('<DIST />' eq 'fedora37') ||
   69:          ('<DIST />' eq 'fedora38') || ('<DIST />' eq 'fedora39') ||
   70:          ('<DIST />' eq 'fedora40') || ('<DIST />' eq 'centos8')  ||
   71:          ('<DIST />' eq 'rhes8')    || ('<DIST />' eq 'oracle7')  || 
   72:          ('<DIST />' eq 'oracle8')  || ('<DIST />' eq 'rocky8')   ||
   73:          ('<DIST />' eq 'alma8')    || ('<DIST />' eq 'centos8-stream') ||
   74:          ('<DIST />' eq 'centos9-stream') || ('<DIST />' eq 'rhes9')  ||
   75:          ('<DIST />' eq 'oracle9')  || ('<DIST />' eq 'rocky9')   ||
   76:          ('<DIST />' eq 'alma9'))     {
   77:     $use_systemctl = 1;
   78:     $systemctl_only = 1;
   79: }
   80: if (('<DIST />' eq 'fedora16') || ('<DIST />' eq 'fedora17')    ||
   81:     ('<DIST />' eq 'fedora18') || ('<DIST />' eq 'fedora19')    ||
   82:     ('<DIST />' eq 'fedora20') || ('<DIST />' eq 'fedora21')    ||
   83:     ('<DIST />' eq 'fedora22') || ('<DIST />' eq 'fedora23')    ||
   84:     ('<DIST />' eq 'fedora24') || ('<DIST />' eq 'fedora25')    ||
   85:     ('<DIST />' eq 'suse12.1') || ('<DIST />' eq 'suse12.2')    ||
   86:     ('<DIST />' eq 'suse12.3') || ('<DIST />' eq 'suse13.1')    ||
   87:     ('<DIST />' eq 'suse13.2') || ('<DIST />' eq 'rhes7')       ||
   88:     ('<DIST />' eq 'centos7')  || ('<DIST />' eq 'scientific7') || 
   89:     ('<DIST />' eq 'sles12')) {
   90:     $use_systemctl = 1;
   91: }
   92: exit if (((!$systemctl_only) && (! -x $checker_bin)) && (! -x $systemctl_bin));
   93: 
   94: my $rlstr = join('',@runlevels);
   95: my $nrlstr = join('',@norunlevels);
   96: foreach my $service ($webserver,'loncontrol') {
   97:     if (($use_systemctl) && ($service eq $webserver) || ($systemctl_only)) {
   98:         my $command = "systemctl is-enabled ".$service.".service";
   99:         my $results = `$command`;
  100:         chomp($results);
  101:         if ($results ne 'enabled') {
  102:             print "**** WARNING: $service is not set to run on boot.".$/.
  103:                   "    Execute the following commands to fix this:".$/.
  104:                   "    systemctl enable ".$service.".service".$/;
  105:         }
  106:     } else {
  107:         my $command = $checker_bin.' --list '.$service;
  108:         my $results = `$command`;
  109:         if ($results eq '') {
  110:             print "**** WARNING: $service is not set to run on boot.$/".
  111:             "    Execute the following commands to fix this:".$/;
  112:             if ('<DIST />' eq 'debian5' || '<DIST />' eq 'debian6' || '<DIST />' eq 'ubuntu6' ||  '<DIST />' eq 'ubuntu8' || '<DIST />' eq 'ubuntu10' || '<DIST />' eq 'ubuntu12' || '<DIST />' eq 'ubuntu14' || '<DIST />' eq 'ubuntu16') {
  113:                 print "        $checker_bin --level $nrlstr $service off".$/;
  114:             } else {
  115:                 print "        $checker_bin --add $service".$/;
  116:             }
  117:             print "        $checker_bin --level $rlstr $service on".$/;
  118:         } else {
  119:             my %curr_runlevels;
  120:             for (my $rl = 0;$rl &lt;=6;$rl++) {
  121:                 if ($results =~ /$rl:on/) { $curr_runlevels{$rl}++; }
  122:             }
  123:             #
  124:             my $warning;
  125:             foreach my $rl (@runlevels) {
  126:                 if (! exists($curr_runlevels{$rl}) ) {
  127:                     $warning .=
  128:                        "**** WARNING: $service is not set to run at runlevel $rl".$/;
  129:                 }
  130:             }
  131:             if ($warning) {
  132:                 print $warning.
  133:                       "    Execute the following command to fix this:".$/.
  134:                       "        $checker_bin --level $rlstr $service on".$/;
  135:             }
  136:         }
  137:     }
  138: }
  139: 
  140: </perlscript>
  141: </file>
  142: </files>
  143: </piml>

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