[LON-CAPA-cvs] cvs: doc /loncapafiles sanitycheck.piml

matthew lon-capa-cvs@mail.lon-capa.org
Tue, 27 May 2003 13:16:44 -0000


matthew		Tue May 27 09:16:44 2003 EDT

  Modified files:              
    /doc/loncapafiles	sanitycheck.piml 
  Log:
  Made the mysql socket check a WARNING instead of an ERROR.
  
  
Index: doc/loncapafiles/sanitycheck.piml
diff -u doc/loncapafiles/sanitycheck.piml:1.13 doc/loncapafiles/sanitycheck.piml:1.14
--- doc/loncapafiles/sanitycheck.piml:1.13	Mon Feb  3 13:03:51 2003
+++ doc/loncapafiles/sanitycheck.piml	Tue May 27 09:16:44 2003
@@ -2,7 +2,7 @@
 	"http://lpml.sourceforge.net/DTD/piml.dtd">
 <!-- sanitycheck.piml -->
 
-<!-- $Id: sanitycheck.piml,v 1.13 2003/02/03 18:03:51 harris41 Exp $ -->
+<!-- $Id: sanitycheck.piml,v 1.14 2003/05/27 13:16:44 matthew Exp $ -->
 
 <!--
 
@@ -76,7 +76,7 @@
 
     if ($uid ne $web_uid) # If file owned by someone else other than www.
       {
-	print('**** ERROR **** <TARGET /> should be owned by'.
+	print('**** WARNING **** <TARGET /> should be owned by'.
 	      ' www.'."\n".'Try these commands to make things right:'."\n".
 	      'chown www:www <TARGET />'."\n".
 	      'chmod a-rwx,u+rwx <TARGET />'."\n");
@@ -87,7 +87,7 @@
 	my $wflag = $1;
 	if ($wflag != 7) # Can www use this socket?  (Hope so!)
 	  {
-	    print('**** ERROR **** '.
+	    print('**** WARNING **** '.
 	      '<TARGET /> should be user "rwx" (by'.
 	      ' www).'."\n".'Try these commands to make things right:'."\n".
 	      'chown www:www <TARGET />'."\n".
@@ -97,7 +97,7 @@
 	$wflag=$1;
 	if ($wflag ne "00") # Can others use this socket?  (Hope not!)
 	  {
-	    print('**** ERROR **** '.
+	    print('**** WARNING **** '.
 	      '<TARGET /> should not be group or everybody accessible'.
 	      '.'."\n".'Try these commands to make things right:'."\n".
 	      'chown www:www <TARGET />'."\n".