From: Jamie C. <jca...@we...> - 2001-03-22 23:21:48
|
Joe Cooper wrote: > > Hey folks, > > I've just started a new module... > > I'd like to pull in the configs from Apache, DNS, and Sendmail using > foreign_config. I've started with Apache. It is working, but only for > the values that are actually set...those that are 'Automatic' are not > included in the configuration that is pulled in. > > How do I pull in all of the configuration (both the defaults for the OS, > and the manual settings)? Options that are set to Automatic are not in the configuation, because it is up to the code to work them out. For example, if the 'Path to httpd.conf file' option is set to automatic, then the code should read the file $config{'httpd_dir'}/etc/httpd.conf instead. Unfortunately, this relative path is hard-coded rather than being in a config file somewhere :( - Jamie |