version 1.4, 2002/02/02 14:45:40
|
version 1.8, 2002/04/14 20:34:32
|
Line 1
|
Line 1
|
|
<!DOCTYPE piml PUBLIC "-//TUX/DTD piml 1.0 Final//EN" |
|
"http://lpml.sourceforge.net/DTD/piml.dtd"> |
<!-- webserver.piml --> |
<!-- webserver.piml --> |
<!-- Scott Harrison --> |
<!-- Scott Harrison --> |
|
|
Line 36 http://www.lon-capa.org/
|
Line 38 http://www.lon-capa.org/
|
<!-- defined. --> |
<!-- defined. --> |
|
|
<piml> |
<piml> |
<targetroot>/abc/</targetroot> |
<targetroot>/</targetroot> |
<specialnotices> |
<specialnotices> |
<specialnotice> |
<specialnotice> |
</specialnotice> |
</specialnotice> |
Line 58 else {
|
Line 60 else {
|
open IN, "<<TARGET />"; |
open IN, "<<TARGET />"; |
while (<IN>) { if (/^\s*Include\s+conf\/srm.conf/) { $flag=1; } } |
while (<IN>) { if (/^\s*Include\s+conf\/srm.conf/) { $flag=1; } } |
close IN; |
close IN; |
unless ($flag==0) { |
unless ($flag==1) { |
open OUT,">><TARGET />"; |
open OUT,">><TARGET />"; |
print OUT 'Include conf/srm.conf'."\n"; |
print OUT 'Include conf/srm.conf'."\n"; |
close OUT; |
close OUT; |
Line 67 else {
|
Line 69 else {
|
open IN, "<<TARGET />"; |
open IN, "<<TARGET />"; |
while (<IN>) { if (/^\s*Include\s+conf\/access.conf/) { $flag=1; } } |
while (<IN>) { if (/^\s*Include\s+conf\/access.conf/) { $flag=1; } } |
close IN; |
close IN; |
unless ($flag==0) { |
unless ($flag==1) { |
open OUT,">><TARGET />"; |
open OUT,">><TARGET />"; |
print OUT 'Include conf/access.conf'."\n"; |
print OUT 'Include conf/access.conf'."\n"; |
close OUT; |
close OUT; |
Line 81 else {
|
Line 83 else {
|
} |
} |
} |
} |
close IN; |
close IN; |
unless ($flag==0) { |
unless ($flag==1) { |
open OUT,">><TARGET />"; |
open OUT,">><TARGET />"; |
print OUT 'Include conf/loncapa.conf'."\n"; |
print OUT 'Include conf/loncapa.conf'."\n"; |
close OUT; |
close OUT; |
Line 98 Apache</note>
|
Line 100 Apache</note>
|
</dependencies> |
</dependencies> |
<perlscript mode='fg'> |
<perlscript mode='fg'> |
unless (-e "<TARGET />") { |
unless (-e "<TARGET />") { |
print <<; |
print <<END; |
WARNING! access.conf is not currently present on your system. |
WARNING! access.conf is not currently present on your system. |
This is either due to |
This is either due to |
* you are missing the Apache software package, |
* you are missing the Apache software package, |
Line 114 my $flag=0;
|
Line 116 my $flag=0;
|
open IN, "<<TARGET />"; |
open IN, "<<TARGET />"; |
while (<IN>) { if (/^\s*Include\s+conf\/loncapa.conf/) { $flag=1; } } |
while (<IN>) { if (/^\s*Include\s+conf\/loncapa.conf/) { $flag=1; } } |
close IN; |
close IN; |
unless ($flag==0) { |
unless ($flag==1) { |
open OUT,">><TARGET />"; |
open OUT,">><TARGET />"; |
print OUT 'Include conf/loncapa.conf'."\n"; |
print OUT 'Include conf/loncapa.conf'."\n"; |
close OUT; |
close OUT; |
Line 130 Apache</note>
|
Line 132 Apache</note>
|
</dependencies> |
</dependencies> |
<perlscript mode='fg'> |
<perlscript mode='fg'> |
unless (-e "<TARGET />") { |
unless (-e "<TARGET />") { |
print <<; |
print <<END; |
WARNING! srm.conf is not currently present on your system. |
WARNING! srm.conf is not currently present on your system. |
This is either due to |
This is either due to |
* you are missing the Apache software package, |
* you are missing the Apache software package, |
Line 146 my $flag=0;
|
Line 148 my $flag=0;
|
open IN, "<<TARGET />"; |
open IN, "<<TARGET />"; |
while (<IN>) { if (/^\s*Include\s+conf\/loncapa.conf/) { $flag=1; } } |
while (<IN>) { if (/^\s*Include\s+conf\/loncapa.conf/) { $flag=1; } } |
close IN; |
close IN; |
unless ($flag==0) { |
unless ($flag==1) { |
open OUT,">><TARGET />"; |
open OUT,">><TARGET />"; |
print OUT 'Include conf/loncapa.conf'."\n"; |
print OUT 'Include conf/loncapa.conf'."\n"; |
close OUT; |
close OUT; |