tis-rustdesk
1.3.6-2
RustDesk est une alternative de contrôle à distance open source complète pour l'auto-hébergement et la sécurité avec une configuration minimale
6914 téléchargements
Télécharger
Voir le résultat de la construction Voir l'analyse de VirusTotal

- package : tis-rustdesk
- name : RustDesk
- version : 1.3.6-2
- categories : Utilities
- maintainer : WAPT Team,Tranquil IT,Amel FRADJ
- editor :
- licence : opensource_free
- locale : all
- target_os : redhat_based
- impacted_process :
- architecture : x64
- signature_date : 2024-12-27 17:07
- size : 27.00 Mo
- homepage : https://rustdesk.com/
package : tis-rustdesk
version : 1.3.6-2
architecture : x64
section : base
priority : optional
name : RustDesk
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Amel FRADJ
description : RustDesk is a full-featured open source remote control alternative for self-hosting and security with minimal configuration
depends :
conflicts :
maturity : PROD
locale : all
target_os : redhat_based
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : RustDesk est une alternative de contrôle à distance open source complète pour l'auto-hébergement et la sécurité avec une configuration minimale
description_pl : RustDesk to w pełni funkcjonalna alternatywa zdalnego sterowania typu open source do samodzielnego hostingu i bezpieczeństwa przy minimalnej konfiguracji
description_de : RustDesk ist eine voll funktionsfähige Open-Source-Fernsteuerungsalternative für Selbst-Hosting und Sicherheit mit minimaler Konfiguration
description_es : RustDesk es una completa alternativa de control remoto de código abierto para el autoalojamiento y la seguridad con una configuración mínima
description_pt : O RustDesk é uma alternativa de controlo remoto de código aberto com todas as funcionalidades para auto-hospedagem e segurança com configuração mínima
description_it : RustDesk è un'alternativa di controllo remoto open source completa per l'auto-hosting e la sicurezza con una configurazione minima
description_nl : RustDesk is een volledig open source alternatief voor afstandsbediening voor zelfbeheer en beveiliging met minimale configuratie
description_ru : RustDesk - это полнофункциональная альтернатива удаленного управления с открытым исходным кодом для самостоятельного размещения и обеспечения безопасности с минимальной конфигурацией
audit_schedule :
editor :
keywords : RustDesk
licence : opensource_free
homepage : https://rustdesk.com/
package_uuid : 439f71fb-4b4b-48a2-bb56-4e9750d13392
valid_from :
valid_until :
forced_install_on :
changelog : https://github.com/rustdesk/rustdesk/releases
min_os_version :
max_os_version :
icon_sha256sum : 6e1b5881cfd9d438d6aff2c4f9c3f845a728072c75a61d637b842c95b6322a8c
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2024-12-27T17:07:35.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 : njulliBVF8lmjCXoPsfUcn3XtS8BTsSMS/Q3dBwh0jxJZoJtzSJRP4vdrX6rKd6nyPvFZ5IIncTXmb5skqPT+rEjtH3EJQjtBkqpPZUljGKU9kaZ+j0IQfu91jUI7jNQEMHj9+xKUeyoyLE5FG1XZSb/1rH8RyIaNvyOf5vX3iczD9212JIPatMBpL/vsJoY4U53nO4MCYKmtxqvm+QzOzUm76W5EYdgqJ3sFPQXVvtXLypowiPpVSHAJtX6/5VJ4HNGc+9svOzbBy795tfC2TeoT+BUPapNFLhbtkV6NhK6zZzYCZoWQjePpSg2zo9yZ3M/5H4pasCn+cJownml3w==
# -*- coding: utf-8 -*-
from setuphelpers import *
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def install():
# Declaring local variables
bin_name = glob.glob("*.rpm")[0]
# Installing the software
install_rpm(bin_name)
def uninstall():
uninstall_yum('rustdesk')
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
def update_package():
# Declaration of local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
api_url = "https://api.github.com/repos/rustdesk/rustdesk/releases/latest"
update_dict = {
"latest_bin": {
"windows-x64": "x86_64.exe",
"windows-x86": "x86-sciter.exe",
"macos-x64" : "x86_64.dmg",
"macos-arm" : "aarch64.dmg",
"debian_based-arm" : "armv7-sciter.deb",
"debian_based-arm64" : "aarch64.deb" ,
"debian_based-x64" : "x86_64.deb" ,
"redhat_based-x64" : "x86_64.rpm"
}
}
# Get data from API
releases_dict = wgets(api_url, proxies=proxies, as_json=True)
exe_found = False # Flag pour indiquer la découverte d'un fichier .msi
for release in releases_dict:
if exe_found:
break
for asset in releases_dict["assets"]:
if asset["browser_download_url"].endswith(
update_dict["latest_bin"][f'{ensure_list(control.target_os)[0].split("(")[0]}-{ensure_list(control.architecture)[0]}']
):
url_download = asset["browser_download_url"]
filename = url_download.split("/")[-1]
last_version = releases_dict["name"].replace("-",".")
exe_found = True # Mettre à jour le flag pour indiquer qu'un .exe a été trouvé
break
if not isfile(filename):
package_updated = True
wget(url_download, filename, proxies=proxies)
# nettoyer les fichiers temporaires
for f in glob.glob("*.rpm"):
if f != filename:
remove_file(f)
control.set_software_version(last_version)
control.save_control_to_wapt()
return package_updated
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
b5fa7ee1a567385abeca8e6121ddc79292b3b3a10cdb469806fd7561bcaa5db4 : WAPT/control
6e1b5881cfd9d438d6aff2c4f9c3f845a728072c75a61d637b842c95b6322a8c : WAPT/icon.png
4fa9fbc98979ac968e964c3bc3a7e43f9aa74686b7c7d1b1ece332388bffd105 : luti.json
6c71d7a0779dbfdfa399a4fe5deb75498820d6e5c74e53792e9a9340aad08cbc : rustdesk-1.3.6-0.x86_64.rpm
08ae8e2a3f95054f6303f31064082b3a9dbe56cc9ce717af777bcde75812f475 : setup.py
b894ff647943378cad54345ab971a4e3eeb92c4268ffaa4db5ac210d7fa4866b : update_package.py