ApplicationBootstrap: Change default library path

from: `/usr/share/php-Icinga`
to: `/usr/share/icinga-php`
This commit is contained in:
Johannes Meyer 2021-05-28 11:43:46 +02:00
parent cc0c6fc71b
commit 4fc78a4cfd
1 changed files with 2 additions and 2 deletions

View File

@ -199,8 +199,8 @@ abstract class ApplicationBootstrap
explode(':', $libraryPaths) explode(':', $libraryPaths)
), 'is_dir'); ), 'is_dir');
} else { } else {
$this->libraryPaths = is_dir('/usr/share/php-icinga') $this->libraryPaths = is_dir('/usr/share/icinga-php')
? ['/usr/share/php-icinga'] ? ['/usr/share/icinga-php']
: []; : [];
} }
} }