From be197de69adf6336bcc138955a43b4dd95a26169 Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Wed, 10 May 2023 11:52:46 +0200 Subject: [PATCH] #11157 Adjusted URL update manager --- pandora_console/include/config_process.php | 2 +- pandora_console/include/functions_config.php | 2 +- .../update_manager_client/lib/UpdateManager/Client.php | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 92ba65ffdf..b6dac27e67 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -220,7 +220,7 @@ if (!isset($config['inventory_changes_blacklist'])) { if (!isset($config['url_update_manager'])) { config_update_value( 'url_update_manager', - 'https://licensing.artica.es/pandoraupdate7/server.php' + 'https://licensing.pandorafms.com/pandoraupdate7/server.php' ); } diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php index e7438890f8..ec6b775434 100644 --- a/pandora_console/include/functions_config.php +++ b/pandora_console/include/functions_config.php @@ -3813,7 +3813,7 @@ function get_um_url() $url = $config['url_update_manager']; $url = substr($url, 0, (strlen($url) - strpos(strrev($url), '/'))); } else { - $url = 'https://licensing.artica.es/pandoraupdate7/'; + $url = 'https://licensing.pandorafms.com/pandoraupdate7/'; config_update_value( 'url_update_manager', $url.'/server.php' diff --git a/pandora_console/update_manager_client/lib/UpdateManager/Client.php b/pandora_console/update_manager_client/lib/UpdateManager/Client.php index 9b2af182ce..ca5bb81778 100644 --- a/pandora_console/update_manager_client/lib/UpdateManager/Client.php +++ b/pandora_console/update_manager_client/lib/UpdateManager/Client.php @@ -338,7 +338,7 @@ class Client public function __construct(?array $settings) { // Default values. - $this->umHost = 'licensing.artica.es'; + $this->umHost = 'licensing.pandorafms.com'; $this->umPort = 443; $this->endPoint = '/'; $this->insecure = false;