Skip to content
This repository has been archived by the owner on Dec 13, 2022. It is now read-only.

Commit

Permalink
adding 22.04.2 update script file with changes
Browse files Browse the repository at this point in the history
  • Loading branch information
hyahiaoui-ext committed Jul 29, 2022
1 parent dc1447f commit b461990
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 1 deletion.
1 change: 0 additions & 1 deletion www/install/php/Update-22.04.0-beta.1.php
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,6 @@

$errorMessage = 'Unable to exclude Gorgone / MBI / MAP users from password policy';
excludeUsersFromPasswordPolicy($pearDB);

$pearDB->commit();
if ($pearDB->isColumnExist('contact', 'contact_passwd') === 1) {
$errorMessage = "Unable to drop column 'contact_passwd' from 'contact' table";
Expand Down
51 changes: 51 additions & 0 deletions www/install/php/Update-22.04.2.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<?php

/*
* Copyright 2005 - 2022 Centreon (https://www.centreon.com/)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* For more information : contact@centreon.com
*
*/

require_once __DIR__ . '/../../class/centreonLog.class.php';

$centreonLog = new CentreonLog();

//error specific content
$versionOfTheUpgrade = 'UPGRADE - 22.04.2: ';
$errorMessage = '';

try {
$pearDB->beginTransaction();

$errorMessage = "Unable to delete 'appKey' information from database";
$pearDB->query("DELETE FROM `informations` WHERE `key` = 'appKey'");

$pearDB->commit();
} catch (\Exception $e) {
if ($pearDB->inTransaction()) {
$pearDB->rollBack();
}

$centreonLog->insertLog(
4,
$versionOfTheUpgrade . $errorMessage .
" - Code : " . (int)$e->getCode() .
" - Error : " . $e->getMessage() .
" - Trace : " . $e->getTraceAsString()
);

throw new \Exception($versionOfTheUpgrade . $errorMessage, (int) $e->getCode(), $e);
}

0 comments on commit b461990

Please sign in to comment.