This repository has been archived by the owner on Dec 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cp7 m24 migrate the installer and update (#6281)
* refactor(install): fix upgrade process change MySQL library of php requirements and add a check for release notes file Resolves CP7M-24 * refactor(install): add missing folder and cfg mock add missing folder `www/install/tmp` and add mock of `www/install/install.conf.php` Resolves CP7M-24 * refactor(install): Fix smarty and smarty-plugins loading Resolves problem for unknown smarty plugin. Loads composer-managed smarty.
- Loading branch information
1 parent
e6139eb
commit bb6f78c
Showing
6 changed files
with
42 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
$conf_centreon['centreon_dir'] = "/usr/share/centreon/"; | ||
$conf_centreon['centreon_etc'] = "/etc/centreon/"; | ||
$conf_centreon['centreon_dir_www'] = "/usr/share/centreon/www/"; | ||
$conf_centreon['centreon_dir_rrd'] = "/var/lib/centreon"; | ||
$conf_centreon['centreon_log'] = "/var/log/centreon"; | ||
$conf_centreon['centreon_varlib'] = "/var/lib/centreon"; | ||
$conf_centreon['centreon_group'] = "centreon"; | ||
$conf_centreon['centreon_user'] = "centreon"; | ||
$conf_centreon['rrdtool_dir'] = "/usr/bin/rrdtool"; | ||
$conf_centreon['apache_user'] = "apache"; | ||
$conf_centreon['apache_group'] = "apache"; | ||
$conf_centreon['mail'] = "/bin/mail"; | ||
$conf_centreon['broker_user'] = "centreon-broker"; | ||
$conf_centreon['broker_group'] = "centreon-broker"; | ||
$conf_centreon['broker_etc'] = "/etc/centreon-broker"; | ||
$conf_centreon['broker_init_script'] = "cbd"; | ||
$conf_centreon['monitoring_user'] = "centreon-engine"; | ||
$conf_centreon['monitoring_group'] = "centreon-engine"; | ||
$conf_centreon['monitoring_etc'] = "/etc/centreon-engine"; | ||
$conf_centreon['monitoring_init_script'] = "centengine"; | ||
$conf_centreon['monitoring_binary'] = "/usr/sbin/centengine"; | ||
$conf_centreon['monitoring_varlog'] = "/var/log/centreon-engine"; | ||
$conf_centreon['plugin_dir'] = "/usr/lib/nagios/plugins"; | ||
$conf_centreon['centreon_engine_connectors'] = "/usr/lib64/centreon-connector"; | ||
$conf_centreon['centreon_engine_lib'] = "/usr/lib64/centreon-engine"; | ||
$conf_centreon['centreonbroker_cbmod'] = "/usr/lib64/nagios/cbmod.so"; | ||
$conf_centreon['centreon_plugins'] = "/usr/lib/centreon/plugins"; | ||
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
MySQL:mysql | ||
MySQL:pdo_mysql | ||
GD:gd | ||
LDAP:ldap | ||
XML Writer:xmlwriter | ||
|