tis-xencenter icon

XenCenter

Silent install package for XenCenter

2025.3.0-4

  • package: tis-xencenter
  • name: XenCenter
  • version: 2025.3.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.62 Mo
  • installed_size: 72.44 Mo
  • homepage : https://docs.xenserver.com/fr-fr/xencenter.html

package           : tis-xencenter
version           : 2025.3.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      : 7980b36f-7da6-4457-8e3b-7523eb30de5d
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    : 0c9d708ce64c5d4a11c2e42fc18f96842ecf47cdc948456dd880859614d1af11
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-08-23T18:00:21.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         : Wl956JPo8N4TOHqCDPUFN6fuZV3ihz4yXR7pj0oO2KBJHd1qR7p//fcPrKJeWaCHrJf5w6cUnm7trfzCS+3u5fDBInyFglVbjUR2Gq/i4BXGJpQRukhcGxmFwq+469O4/Yc/HJt/Yo4W8CHlfIMzWgcrb6do0YSxwL5+DMdbb25fhy1eBiXHhSgCuPOMIIE2oCYXNIG3AGiVWbGs5CFuQuaDRRNv7hT3nXZ6b766xLYPyHFLrdh9/VV72OwbdSfnw5+OUtzeJTfSc9ezelqIM3v2XORe/JZK7+jZfsYDGL+h527P+nJ6FjJFLjgaoLSoh1If+D4JgT/T4WTPgFgnGQ==

#!/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
cce649f6bf066a69624c6522810f41ef1b2af76ae10ff638a3f1c707220be709 : WAPT/control
0c9d708ce64c5d4a11c2e42fc18f96842ecf47cdc948456dd880859614d1af11 : WAPT/icon.png
c348b759adffd0f283778c8910edbb3900524c1d9de5ddbe51f44c60e5c60747 : XenCenter-2025.3.0.msi
06cdf89dc99b11288f59f75b47ac0f2ab84e9b4d99a48811064cb822c9069d14 : luti.json
fa71c29c9aa526fac9617033b549b36481b820d7a758bb16e98e00ca1c47a8df : setup.py
ae7dcf847ff72b41dde8924fbd5dbc76aa26afa3d2792a56b0aa79602ccdb975 : update_package.py