Diff for /doc/loncapafiles/webserver.piml between versions 1.1 and 1.2

version 1.1, 2002/01/29 10:32:44 version 1.2, 2002/02/02 12:57:10
Line 36  http://www.lon-capa.org/ Line 36  http://www.lon-capa.org/
 <!-- defined. -->  <!-- defined. -->
   
 <piml>  <piml>
 <targetroot>/</targetroot>  <targetroot>/abc/</targetroot>
   <specialnotices>
   <specialnotice>
   </specialnotice>
   </specialnotices>
 <files>  <files>
 <file>  <file>
 <target dist='default'>/etc/httpd/conf/httpd.conf</target>  <target dist='default'>/etc/httpd/conf/httpd.conf</target>
Line 61  else { Line 65  else {
 <target dist='default'>/etc/httpd/conf/access.conf</target>  <target dist='default'>/etc/httpd/conf/access.conf</target>
 <note>This may or may not exist on a system depending on the version of  <note>This may or may not exist on a system depending on the version of
 Apache</note>  Apache</note>
 <status>unverified</status>  
 <dependencies dist='default'>  <dependencies dist='default'>
 /etc/httpd/conf/access.conf  /etc/httpd/conf/access.conf
 </dependencies>  </dependencies>
 <perlscript mode='fg'>  <perlscript mode='fg'>
   unless (-e "<TARGET />") {
    print &lt;&lt;;
   WARNING! access.conf is not currently present on your system.
   This is either due to 
   * you are missing the Apache software package,
   * you have a newer version of Apache that does not
     ordinarily install an access.conf
   * configuration files are installed in a directory location
     different than for <TARGET />
   For backwards compatibility,
   <TARGET /> is being generated.
   END
   }
 open OUT,"&gt;&gt;<TARGET />";  open OUT,"&gt;&gt;<TARGET />";
 print OUT 'Include loncapa.conf'."\n";  print OUT 'Include loncapa.conf'."\n";
 close OUT;  close OUT;
Line 75  close OUT; Line 91  close OUT;
 <target dist='default'>/etc/httpd/conf/srm.conf</target>  <target dist='default'>/etc/httpd/conf/srm.conf</target>
 <note>This may or may not exist on a system depending on the version of  <note>This may or may not exist on a system depending on the version of
 Apache</note>  Apache</note>
 <status>unverified</status>  
 <dependencies dist='default'>  <dependencies dist='default'>
 /etc/httpd/conf/srm.conf  /etc/httpd/conf/srm.conf
 </dependencies>  </dependencies>
 <perlscript mode='fg'>  <perlscript mode='fg'>
   unless (-e "<TARGET />") {
    print &lt;&lt;;
   WARNING! srm.conf is not currently present on your system.
   This is either due to 
   * you are missing the Apache software package,
   * you have a newer version of Apache that does not
     ordinarily install an srm.conf
   * configuration files are installed in a directory location
     different than for <TARGET />
   For backwards compatibility,
   <TARGET /> is being generated.
   END
   }
 open OUT,"&gt;&gt;<TARGET />";  open OUT,"&gt;&gt;<TARGET />";
 print OUT 'Include loncapa.conf'."\n";  print OUT 'Include loncapa.conf'."\n";
 close OUT;  close OUT;

Removed from v.1.1  
changed lines
  Added in v.1.2


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