Revert "Make preferences INI path NOT be configurable"

This reverts commit f2693613d1.
This commit is contained in:
Alexander Klimov 2014-06-25 11:05:51 +02:00
parent fdf74c5e18
commit ebca81b040
3 changed files with 15 additions and 5 deletions

View File

@ -151,9 +151,9 @@ abstract class ApplicationBootstrap
$configDir = '/etc/icingaweb';
}
}
$canonical = realpath($configDir);
if ($canonical) {
$this->configDir = $canonical;
$this->configDir = realpath($configDir);
if (!$this->configDir) {
$this->configDir = '/etc/icingaweb';
}
$this->setupAutoloader();

View File

@ -165,6 +165,16 @@ class Config extends Zend_Config
*/
public static function resolvePath($path)
{
return self::$configDir . DIRECTORY_SEPARATOR . ltrim($path, DIRECTORY_SEPARATOR);
if (Platform::isWindows()) {
throw new ProgrammingError('Windows support has not yet been implemented');
}
if (strpos(dirname($path), DIRECTORY_SEPARATOR) === 0) {
return $path;
}
$path = self::$configDir . DIRECTORY_SEPARATOR . $path;
$canonical = realpath($path);
return ($canonical === false) ? $path : $canonical;
}
}

View File

@ -132,7 +132,7 @@ abstract class PreferencesStore
}
if ($type === 'Ini') {
$config->location = IcingaConfig::resolvePath('preferences');
$config->location = $config->config_path;
} elseif ($type === 'Db') {
$config->connection = new DbConnection(ResourceFactory::getResourceConfig($config->resource));
}