tis-xencenter icon

XenCenter

Paquet d’installation silencieuse pour XenCenter

2025.4.0-4
System
System

  • package: tis-xencenter
  • name: XenCenter
  • version: 2025.4.0-4
  • categories: System
  • maintainer: WAPT Team,Tranquil IT,Ingrid TALBOT, Bertrand LEMOIGNE
  • editor: Citrix Systems
  • licence: proprietary_free,wapt_public
  • target_os: windows
  • impacted_process: XenCenter,XenCenterMain
  • architecture: all
  • signature_date:
  • size: 43.64 Mo
  • installed_size: 72.44 Mo
  • homepage : https://docs.xenserver.com/fr-fr/xencenter.html

package           : tis-xencenter
version           : 2025.4.0-4
architecture      : all
section           : base
priority          : optional
name              : XenCenter
categories        : System
maintainer        : WAPT Team,Tranquil IT,Ingrid TALBOT, Bertrand LEMOIGNE
description       : XenCenter enables you to manage your XenServer or Citrix Hypervisor environment and deploy, manage, and monitor virtual machines from your Windows desktop
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 2.3
sources           : https://docs.xenserver.com/fr-fr/xencenter.html
installed_size    : 72443806
impacted_process  : XenCenter,XenCenterMain
description_fr    : XenCenter vous permet de gérer votre environnement XenServer ou Citrix Hypervisor et de déployer, gérer et surveiller des machines virtuelles à partir de votre bureau Windows
description_pl    : 
description_de    : 
description_es    : 
description_pt    : 
description_it    : 
description_nl    : 
description_ru    : 
audit_schedule    : 
editor            : Citrix Systems
keywords          : citrix,virtualization
licence           : proprietary_free,wapt_public
homepage          : https://docs.xenserver.com/fr-fr/xencenter.html
package_uuid      : 8b9d00c7-83c4-40d1-994c-faf3b9a56367
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : https://support.citrix.com/article/CTX473972/upcoming-changes-in-xencenter
min_os_version    : 6.0
max_os_version    : 
icon_sha256sum    : 6d59bc7e7b30fbff407a0e61a05bb19d027b35a21166b7084ca2449c95867f88
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-10-28T13:08:42.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature         : JevbhrivFS5CkOfpqpCq9bH+QcvnLngPOvAzRR6cHcxCUqflcbKhOlHUwTTn8Ny5hmPAH66qUMjRBigwyZOdbi1yBgt7w3zF2LZyP7UpGhu39PTE16YE/AbcRPJJ6QlVNAf900DzXBsLC0AkbxoSLhWByQxBSiAMznPTVwK72SVT/nBPbWe+ex6LfFoWqBtqwDzZpnwxGvukQXWmq256Vx0kavteqlBU06K0hHn0AONq8NTTB7T0O4VwzrtLO0ifGOasVuvRMInmwxJCueiA3VahPAdQEmLEpzIIzQgiUznmqIwgtL9shuZGeZ1NSP/L0zq2bKq4O2Iw/qN4QXj2Ug==

#!/usr/bin/python
#-*- coding: utf-8 -*-

from setuphelpers import *

def install():

    # Uninstalling older major versions of the software
    for to_uninstall in installed_softwares(uninstallkey="Citrix XenCenter"):
        if Version(to_uninstall["version"], 3) < Version(control.get_software_version(), 3) or force:
            print("Removing: %s (%s)" % (to_uninstall["name"], to_uninstall["version"]))
            killalltasks(ensure_list(control.impacted_process))
            run(uninstall_cmd(to_uninstall["key"]))
            wait_uninstallkey_absent(to_uninstall["key"])

    bin_name = glob.glob('XenCenter*.msi')[0]
    install_msi_if_needed(bin_name)

# -*- coding: utf-8 -*-
from setuphelpers import *

def update_package():

    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()

    url = 'https://www.xenserver.com/downloads'
    for bs_search in bs_find_all(url, "a", "class", "ctx-download ctx-button primary ctx-blue", proxies=proxies):
        if 'XenCenter' in bs_search['href']:
            download_url = bs_search['href']
            break
    latest_bin = download_url.split('/')[-1]
    version = download_url.split('/')[-2]

    # Downloading latest binaries
    print("Latest %s version is: %s" % (control.name, version))
    print("Download URL is: %s" % download_url)
    if not isfile(latest_bin):
        print("Downloading: %s" % latest_bin)
        wget(download_url, latest_bin, proxies=proxies)
    else:
        print("Binary is present: %s" % latest_bin)

    for f in glob.glob('*.msi'):
        if f != latest_bin:
            remove_file(f)

    # Changing version of the package
    if Version(version, 4) > Version(control.get_software_version(), 4):
        print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
        package_updated = True
    else:
        print("Software version up-to-date (%s)" % Version(version))
    control.set_software_version(version)
    control.save_control_to_wapt()

    # Validating or not update-package-sources
    return package_updated

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
c3f17002020ac321973d90e36d5d1d0664033cec9fc700c5c919884ca8f36303 : WAPT/control
6d59bc7e7b30fbff407a0e61a05bb19d027b35a21166b7084ca2449c95867f88 : WAPT/icon.png
f9a3b387d428faf9c64ea9f267b755a6eae3c26f47807e907cea81d1a1a5fa37 : XenCenter-2025.4.0.msi
e0fb3ae9915f0900b2159c6b55f53d98ccc489a4834a1ec85e3e583b667eb0a2 : luti.json
fa71c29c9aa526fac9617033b549b36481b820d7a758bb16e98e00ca1c47a8df : setup.py
9ac9ab928c47bd72c9dd4f033adf65fb4e47d5dcbd5b4eb2145e9bcb05217be3 : update_package.py