[LON-CAPA-cvs] cvs: loncom /build Makefile doc/loncapafiles chkconfig.piml

matthew lon-capa-cvs@mail.lon-capa.org
Thu, 16 Dec 2004 20:14:38 -0000


matthew		Thu Dec 16 15:14:38 2004 EDT

  Added files:                 
    /doc/loncapafiles	chkconfig.piml 

  Modified files:              
    /loncom/build	Makefile 
  Log:
  Added chkconfig.piml and modified Makefile to call it.
  
  
Index: loncom/build/Makefile
diff -u loncom/build/Makefile:1.171 loncom/build/Makefile:1.172
--- loncom/build/Makefile:1.171	Mon Dec  6 15:27:38 2004
+++ loncom/build/Makefile	Thu Dec 16 15:14:37 2004
@@ -1,6 +1,6 @@
 # The LearningOnline Network with CAPA
 
-# $Id: Makefile,v 1.171 2004/12/06 20:27:38 matthew Exp $
+# $Id: Makefile,v 1.172 2004/12/16 20:14:37 matthew Exp $
 
 # TYPICAL USAGE of this Makefile is primarily for two targets:
 # "make build" and "make install".
@@ -126,6 +126,7 @@
 	@echo "ntpcheck: test to see if ntp is installed and running."
 	@echo "html_parser_check: test functionality of HTML::Parser."
 	@echo "cron_lpmlcheck: remove cron file /etc/cron.d/loncapa.lpml."
+	@echo "chkconfig: test runlevels of httpd and loncontrol."
 	@echo "rpmcheck: test to see if rpms known to confict are installed."
 	@echo "updatequery: solicit the user for machine configuration"
 	@echo "             information; to be incorporated during an update"
@@ -406,6 +407,10 @@
 	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
 	tee -a WARNINGS
 
+chkconfig:
+	cat $(SOURCE)/doc/loncapafiles/chkconfig.piml | \
+	perl piml_parse.pl $(CATEGORY) $(DIST) "$(TARGET)" $(LAUNCH) | \
+	tee -a WARNINGS
 
 rpmcheck:
 	cat $(SOURCE)/doc/loncapafiles/rpmcheck.piml | \
@@ -461,6 +466,7 @@
 	make accesscount_seed
 	make modify_config_files
 	make clearoutoldspreadsheetcache
+	make chkconfig
 	make rpmcheck
 	make ntpcheck
 	make html_parser_check

Index: doc/loncapafiles/chkconfig.piml
+++ doc/loncapafiles/chkconfig.piml
<!DOCTYPE piml PUBLIC "-//TUX/DTD piml 1.0 Final//EN" 
	"http://lpml.sourceforge.net/DTD/piml.dtd">
<!-- phpcheck.piml -->
<!-- Matthew Hall -->

<!-- $Id: chkconfig.piml,v 1.1 2004/12/16 20:14:37 matthew Exp $ -->

<!--

This file is part of the LearningOnline Network with CAPA (LON-CAPA).

LON-CAPA is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

LON-CAPA is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with LON-CAPA; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

/home/httpd/html/adm/gpl.txt

http://www.lon-capa.org/

-->

<piml>
<targetroot>/</targetroot>
<files>
<file>
<target dist="default">/home/httpd/lonUsers</target>
<perlscript mode="fg">
my $chkconfig_bin = '/sbin/chkconfig';
exit if (! -x $chkconfig_bin);

my $command = $chkconfig_bin.' --list httpd';
my $results = `$command`;
if ($results eq '') {
    print "**** WARNING: httpd is not set to run on boot.$/".
        "    Execute the following commands to fix this:".$/.
        "        $chkconfig_bin --add httpd".$/.
        "        $chkconfig_bin httpd on".$/;
} else {
    my %httpd_runlevels;
    for (my $rl = 0;$rl &lt;=6;$rl++) {
        if ($results =~ /$rl:on/) { $httpd_runlevels{$rl}++; }
    }
    #
    my $warning;
    foreach my $rl (qw/3 4 5/) {
        if (! exists($httpd_runlevels{$rl}) ) {
            $warning .= 
               "**** WARNING: httpd is not set to run at runlevel $rl".$/;
        }
    }
    if ($warning) {
        print $warning.
            "    Execute the following command to fix this:".$/.
            "        /sbin/chkconfig httpd on ".$/;
    }
}

$command = $chkconfig_bin.' --list loncontrol';
$results = `$command`;
if ($results eq '') {
    print "**** WARNING: loncontrol is not set to run on boot.$/".
        "    Execute the following commands to fix this:".$/.
        "        $chkconfig_bin --add loncontrol".$/.
        "        $chkconfig_bin loncontrol on".$/;
} else {
    my %loncontrol_runlevels;
    for (my $rl = 0;$rl&lt;=6;$rl++) {
        if ($results =~ /$rl:on/) { $loncontrol_runlevels{$rl}++; }
    }
    #
    $warning = '';
    foreach my $rl (qw/3 4 5/) {
        if (! exists($loncontrol_runlevels{$rl})) {
            $warning .= 
                "**** WARNING: loncontrol is not set to run at runlevel $rl\n";
        }
    }
    if ($warning) {
        print $warning.
            "    Execute the following command to fix this:".$/.
            "        /sbin/chkconfig loncontrol on ".$/;
    }
}

</perlscript>
</file>
</files>
</piml>