<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>pgsql/postgresql-8.3.conf</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -891,6 +891,12 @@ The path to the Apache executable for controlling the Apache server.
 
 Defaults to /usr/sbin/httpd.
 
+=item httpd_specify_conf
+
+Specify location of configuration file under &quot;httpd_path&quot; and include that in command strings.
+
+For example, &quot;conf/apache2.conf&quot;, used when executable has been compiled with a specific full path. To detect need for this option see httpd -V output and check for &quot;SERVER_CONFIG_FILE&quot; with a value similar to &quot;/etc/apache2/apache2.conf&quot; (any path beginning with &quot;/&quot;).
+
 =item skip_ssl_cert_gen
 
 A boolean (0/1) setting that determines whether to skip generation of a self-signed SSL certificate for the HTTP server.
@@ -2573,7 +2579,13 @@ sub httpd_control {
     die &quot;Need httpd_path definition!\n&quot;
         unless defined $conf-&gt;{httpd_path}
             and $conf-&gt;{httpd_path} =~ /\S/;
-    do_system_soft(&quot;$conf-&gt;{httpd_cmd_path} -d $conf-&gt;{httpd_path} -k $action&quot;) == 0
+
+    my $cmd = &quot;$conf-&gt;{httpd_cmd_path} -d $conf-&gt;{httpd_path} -k $action&quot;;
+    if (defined $conf-&gt;{httpd_specify_conf} and $conf-&gt;{httpd_specify_conf} =~ /\S/) {
+        $cmd .= &quot; -f $conf-&gt;{httpd_path}/$conf-&gt;{httpd_specify_conf}&quot;;
+    }
+
+    do_system_soft($cmd) == 0
         and return 1;
     return;
 }</diff>
      <filename>lib/Camp/Master.pm</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>3aa89d1f64ed723683037cdacfd5817def688dc6</id>
    </parent>
  </parents>
  <author>
    <name>Brian J. Miller</name>
    <email>brian@endpoint.com</email>
  </author>
  <url>http://github.com/devcamps/camps/commit/3cc3dc10a1f7c43d8cb5ece6f4ca34d3ff6f00cb</url>
  <id>3cc3dc10a1f7c43d8cb5ece6f4ca34d3ff6f00cb</id>
  <committed-date>2009-03-18T13:22:16-07:00</committed-date>
  <authored-date>2009-03-18T13:22:16-07:00</authored-date>
  <message>* Add &quot;httpd_specify_conf&quot; configuration option for command line update
  on some systems. Noticed on Ubuntu 8.10.
* Include Pg 8.3 configuration file with change from
  &quot;stats_command_string&quot; to &quot;track_activities&quot;</message>
  <tree>7bf3e199b53f01d4ad99ad35b90c5f484d3a724b</tree>
  <committer>
    <name>Brian J. Miller</name>
    <email>brian@endpoint.com</email>
  </committer>
</commit>
