genesys-cloud
Paquet d'installation silencieuse pour genesys-cloud
2.52.41-0
Utilities
Utilities
- package: tis-genesys-cloud
- name: genesys-cloud
- version: 2.52.41-0
- categories: Utilities
- maintainer: Tranquil IT, Kevin Cherel
- editor: Amazon Web Services (AWS)
- licence: ©
- target_os: mac
- architecture: all
- signature_date:
- size: 272.45 Mo
- installed_size: 45.75 Mo
- homepage : https://www.genesys.com
package : tis-genesys-cloud
version : 2.52.41-0
architecture : all
section : base
priority : optional
name : genesys-cloud
categories : Utilities
maintainer : Tranquil IT, Kevin Cherel
description : Genesys Cloud is a cloud-based contact center platform that centralizes omnichannel customer interactions and optimizes their management through AI and automation.
depends :
conflicts :
maturity : PROD
locale :
target_os : mac
min_wapt_version : 2.3
sources : https://apps.mypurecloud.com/directory-windows/msi/
installed_size : 45750000
impacted_process :
description_fr : Genesys Cloud est une plateforme cloud de centre de contact qui centralise les interactions clients omnicanales et optimise leur gestion grâce à l’IA et à l’automatisation.
description_pl : Genesys Cloud to chmurowa platforma contact center, która centralizuje wielokanałowe interakcje z klientami i optymalizuje ich obsługę dzięki sztucznej inteligencji i automatyzacji.
description_de : Genesys Cloud ist eine cloudbasierte Contact-Center-Plattform, die Omnichannel-Kundeninteraktionen zentralisiert und deren Verwaltung durch KI und Automatisierung optimiert.
description_es : Genesys Cloud es una plataforma de centro de contacto en la nube que centraliza las interacciones omnicanal con los clientes y optimiza su gestión mediante IA y automatización.
description_pt : O Genesys Cloud é uma plataforma de contact center na nuvem que centraliza as interações omnicanal com os clientes e otimiza sua gestão por meio de IA e automação.
description_it : Genesys Cloud è una piattaforma di contact center basata sul cloud che centralizza le interazioni omnicanale con i clienti e ne ottimizza la gestione tramite IA e automazione.
description_nl : Genesys Cloud is een cloudgebaseerd contactcenterplatform dat omnichannel klantinteracties centraliseert en het beheer ervan optimaliseert met behulp van AI en automatisering.
description_ru : Genesys Cloud — это облачная платформа контакт-центра, которая централизует омниканальное взаимодействие с клиентами и оптимизирует его управление с помощью ИИ и автоматизации.audit_schedule :
audit_schedule :
editor : Amazon Web Services (AWS)
keywords :
licence : ©
homepage : https://www.genesys.com
package_uuid : f35fec28-2421-4dcc-b4ef-0b915af2b285
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.0.22000
max_os_version :
icon_sha256sum : 2ee33ff76c0d980cb0f3eae9a6743b103f8170ef98e04663cafe0b24ca078813
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2026-07-18T17:08:23.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 : p5tYQcUbNWLmYRswQbWOFNwvn4/vAhrEcrJQ+i4YGzjIitx76RMuSBZG5CgJUITJF3tex+8wha9aXQDpL6k/wQDdGm9f6pgU9SNGZIPuZ807Ff4eOTCPs7b0sdg3PGHN89+2+l8m5w0nlwUPsDN7miERUyskuq2Rh40dZszCcQyI6c9efEA6O0Go4Cswzbd9sFra+SV75RMLqP2CghJSy1gok/RPp/r2kqYBVznYVXnx9OBUGWORQCnyX2fqu5T0Kwk0zgl/QYPITF+4Fj61yeY51BVgd7/wYuxuQ2m9Wk7qQU1hZ+mtKDVunGjwCQ2xK0bMxwO356hteeBl9F0x9A==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
# genesys-cloud-mac-2.50.28.dmg
bin_name = glob.glob("genesys-cloud-mac*.dmg")[0]
install_dmg(bin_name)
def uninstall():
remove_tree("/Applications/Genesys Cloud.app")
# -*- coding: utf-8 -*-
from setuphelpers import *
def update_package():
# Initializing variables
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
url = "https://apps.mypurecloud.com/directory-mac/"
# Getting latest version from official sources
print("URL used is: %s" % url)
for bs_search in bs_find_all(url, "div", "onclick",proxies=proxies):
onclick = bs_search["onclick"]
if ".dmg" in onclick:
url_dl = onclick.split("'")[1]
version = url_dl.split("/")[-2].split("-")[0]
latest_bin = url_dl.split("/")[-1]
break
print("Latest %s version is: %s" % (control.name, version))
print("Download url is: %s" % url_dl)
# Downloading latest binaries
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(url_dl, latest_bin, proxies=proxies)
# Changing version of the package
control.set_software_version(version)
control.save_control_to_wapt()
print("Changing package version to: %s in WAPT\\control" % control.version)
# Deleting outdated binaries
remove_outdated_binaries(version)
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
7c1e773c80b6f548ce6e8ec3b33704a9fe0d224e9c2fe9b5cf0d279ea23cdbcd : WAPT/control
2ee33ff76c0d980cb0f3eae9a6743b103f8170ef98e04663cafe0b24ca078813 : WAPT/icon.png
33c549f420ee4bea7ab45c33752d0147e677ecdaf7e1e59e6c8143adf8791d95 : genesys-cloud-mac-2.52.41.dmg
dcd0398ffec934e82f99574c72dff0901d9f9c95c0eef8a6fe4545fd89d6db8f : luti.json
7fc7f5cded21c32020e7e9a1f195a3d5d805869f5ddbd16929477edc12f553f0 : setup.py
cffdf8f3877dc02479d1eaba2c45390f88cdc007bc79f6a5a9da5ba398cf844e : update_package.py