From: Moritz Bunkus Date: Fri, 20 May 2011 08:42:02 +0000 (+0200) Subject: Ermöglichen, dass andere Konfigurationsdatei als config/lx_office.conf eingelesen... X-Git-Tag: release-2.6.3~25^2~15^2~4 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=28e11d2481f02953c2a61c6bb6a8efe3f44d955f;p=kivitendo-erp.git Ermöglichen, dass andere Konfigurationsdatei als config/lx_office.conf eingelesen wird Stichwort: verschiedene Mandanten in ein und derselben Installation. Bisher nur für Task-Server (kommt im nächsten Commit). --- diff --git a/SL/LxOfficeConf.pm b/SL/LxOfficeConf.pm index 8f44016e6..7690eebda 100644 --- a/SL/LxOfficeConf.pm +++ b/SL/LxOfficeConf.pm @@ -6,11 +6,15 @@ use Config::Std; use Encode; sub read { + my ($class, $file_name) = @_; + read_config 'config/lx_office.conf.default' => %::lx_office_conf; _decode_recursively(\%::lx_office_conf); - if (-f 'config/lx_office.conf') { - read_config 'config/lx_office.conf' => my %local_conf; + $file_name ||= 'config/lx_office.conf'; + + if (-f $file_name) { + read_config $file_name => my %local_conf; _decode_recursively(\%local_conf); _flat_merge(\%::lx_office_conf, \%local_conf); }