Merge branch 'ent-11157-cambiar-url-update-manager' into 'develop'

Ent 11157 cambiar url update manager

See merge request artica/pandorafms!5872
This commit is contained in:
Daniel Rodriguez 2023-05-12 08:42:11 +00:00
commit b1f9238cf5
3 changed files with 3 additions and 3 deletions

View File

@ -220,7 +220,7 @@ if (!isset($config['inventory_changes_blacklist'])) {
if (!isset($config['url_update_manager'])) { if (!isset($config['url_update_manager'])) {
config_update_value( config_update_value(
'url_update_manager', 'url_update_manager',
'https://licensing.artica.es/pandoraupdate7/server.php' 'https://licensing.pandorafms.com/pandoraupdate7/server.php'
); );
} }

View File

@ -3813,7 +3813,7 @@ function get_um_url()
$url = $config['url_update_manager']; $url = $config['url_update_manager'];
$url = substr($url, 0, (strlen($url) - strpos(strrev($url), '/'))); $url = substr($url, 0, (strlen($url) - strpos(strrev($url), '/')));
} else { } else {
$url = 'https://licensing.artica.es/pandoraupdate7/'; $url = 'https://licensing.pandorafms.com/pandoraupdate7/';
config_update_value( config_update_value(
'url_update_manager', 'url_update_manager',
$url.'/server.php' $url.'/server.php'

View File

@ -338,7 +338,7 @@ class Client
public function __construct(?array $settings) public function __construct(?array $settings)
{ {
// Default values. // Default values.
$this->umHost = 'licensing.artica.es'; $this->umHost = 'licensing.pandorafms.com';
$this->umPort = 443; $this->umPort = 443;
$this->endPoint = '/'; $this->endPoint = '/';
$this->insecure = false; $this->insecure = false;