[LON-CAPA-cvs] cvs: doc /loncapafiles webserver.piml
harris41
lon-capa-cvs@mail.lon-capa.org
Wed, 06 Feb 2002 19:48:27 -0000
harris41 Thu Feb 7 00:48:27 2002 EDT
Modified files:
/doc/loncapafiles webserver.piml
Log:
minor fix (missing semicolons)
Index: doc/loncapafiles/webserver.piml
diff -u doc/loncapafiles/webserver.piml:1.6 doc/loncapafiles/webserver.piml:1.7
--- doc/loncapafiles/webserver.piml:1.6 Tue Feb 5 06:49:49 2002
+++ doc/loncapafiles/webserver.piml Thu Feb 7 00:48:27 2002
@@ -1,7 +1,7 @@
<!-- webserver.piml -->
<!-- Scott Harrison -->
-<!-- $Id: webserver.piml,v 1.6 2002/02/05 01:49:49 harris41 Exp $ -->
+<!-- $Id: webserver.piml,v 1.7 2002/02/06 19:48:27 harris41 Exp $ -->
<!--
@@ -58,7 +58,7 @@
open IN, "<<TARGET />";
while (<IN>) { if (/^\s*Include\s+conf\/srm.conf/) { $flag=1; } }
close IN;
- unless ($flag==0) {
+ unless ($flag==1) {
open OUT,">><TARGET />";
print OUT 'Include conf/srm.conf'."\n";
close OUT;
@@ -67,7 +67,7 @@
open IN, "<<TARGET />";
while (<IN>) { if (/^\s*Include\s+conf\/access.conf/) { $flag=1; } }
close IN;
- unless ($flag==0) {
+ unless ($flag==1) {
open OUT,">><TARGET />";
print OUT 'Include conf/access.conf'."\n";
close OUT;
@@ -81,7 +81,7 @@
}
}
close IN;
- unless ($flag==0) {
+ unless ($flag==1) {
open OUT,">><TARGET />";
print OUT 'Include conf/loncapa.conf'."\n";
close OUT;
@@ -98,7 +98,7 @@
</dependencies>
<perlscript mode='fg'>
unless (-e "<TARGET />") {
- print <<END
+ print <<END;
WARNING! access.conf is not currently present on your system.
This is either due to
* you are missing the Apache software package,
@@ -114,7 +114,7 @@
open IN, "<<TARGET />";
while (<IN>) { if (/^\s*Include\s+conf\/loncapa.conf/) { $flag=1; } }
close IN;
-unless ($flag==0) {
+unless ($flag==1) {
open OUT,">><TARGET />";
print OUT 'Include conf/loncapa.conf'."\n";
close OUT;
@@ -130,7 +130,7 @@
</dependencies>
<perlscript mode='fg'>
unless (-e "<TARGET />") {
- print <<END
+ print <<END;
WARNING! srm.conf is not currently present on your system.
This is either due to
* you are missing the Apache software package,
@@ -146,7 +146,7 @@
open IN, "<<TARGET />";
while (<IN>) { if (/^\s*Include\s+conf\/loncapa.conf/) { $flag=1; } }
close IN;
-unless ($flag==0) {
+unless ($flag==1) {
open OUT,">><TARGET />";
print OUT 'Include conf/loncapa.conf'."\n";
close OUT;