- package: tis-teamviewer
- name: Teamviewer
- version: 15.66.5-22
- categories: Utilities
- maintainer: WAPT Team,Tranquil IT,Jimmy PELÉ
- editor: TeamViewer AG
- licence: proprietary_free,wapt_public
- locale: all
- target_os: redhat_based
- impacted_process: TeamViewer,TeamViewer_Desktop,TeamViewer_Note,TeamViewer_Service,tv_w32,tv_x64
- architecture: x64
- signature_date:
- size: 113.44 Mo
- installed_size: 153.53 Mo
- homepage : https://www.teamviewer.com
package : tis-teamviewer
version : 15.66.5-22
architecture : x64
section : base
priority : optional
name : Teamviewer
categories : Utilities
maintainer : WAPT Team,Tranquil IT,Jimmy PELÉ
description : TeamViewer is a remote access and remote control computer software, allowing maintenance of computers and other devices
depends :
conflicts :
maturity : PROD
locale : all
target_os : redhat_based
min_wapt_version : 2.3
sources : https://www.teamviewer.com/download/
installed_size : 153528801
impacted_process : TeamViewer,TeamViewer_Desktop,TeamViewer_Note,TeamViewer_Service,tv_w32,tv_x64
description_fr : TeamViewer est un logiciel d'accès à distance et de contrôle à distance d'ordinateurs, permettant la maintenance d'ordinateurs et d'autres appareils
description_pl : TeamViewer to oprogramowanie do zdalnego dostępu i zdalnego sterowania komputerem, umożliwiające konserwację komputerów i innych urządzeń
description_de : TeamViewer ist eine Fernzugriffs- und Fernsteuerungssoftware, die die Wartung von Computern und anderen Geräten ermöglicht
description_es : TeamViewer es un software de acceso remoto y control remoto de ordenadores, que permite el mantenimiento de ordenadores y otros dispositivos
description_pt : O TeamViewer é um software de acesso remoto e controlo remoto de computadores, que permite a manutenção de computadores e outros dispositivos
description_it : TeamViewer è un software per l'accesso e il controllo remoto del computer, che consente la manutenzione di computer e altri dispositivi
description_nl : TeamViewer is computersoftware voor toegang op afstand en afstandsbediening, waarmee computers en andere apparaten kunnen worden onderhouden
description_ru : TeamViewer - это программа удаленного доступа и дистанционного управления компьютером, позволяющая обслуживать компьютеры и другие устройства
audit_schedule :
editor : TeamViewer AG
keywords :
licence : proprietary_free,wapt_public
homepage : https://www.teamviewer.com
package_uuid : aa1fa506-7dd6-4205-b49a-32308a805912
valid_from :
valid_until :
forced_install_on :
changelog : https://community.teamviewer.com/English/categories/change-logs-en
min_os_version :
max_os_version :
icon_sha256sum : 71d3c188b8ebd8672d0ffcb36dae22598986ef3bf83981d468779f234a617c94
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-06-23T12:01:27.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 : NH2ToTh5sVhuzqmNaSnvG24OXVNFETT/K2NLb4WlfDsKUUbUOo4YDABRJym9Q1eL3weuk+Uv9gEcEPbEqTVpuPRm+037ll/jtzhNkRAoGtsOFs6e3oxsBxCvUozcPz3R+dBOk8TkVwQFjT65cUDLgdMDHR+Ehrr65WV9NfMWfhUdxmZmLevjecKdvweSWDxirX0mOWhX24yeEhTSw+XJ+bGRxaS34e+ARZCl+rb+HNzn/Aczr1RGpn1pNfEupO6Z/HwZk3BTTKApM0JbE5KkSApGCaEKrpmyXFrRK/vKjw5e3f5pjeAeSsEOEM5yScSfyYARNXBKpjhQTSggtbNGoA==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
run('LANG=C yum install -y epel-release' ,timeout=900)
bin_name = glob.glob("teamviewer.*.rpm")[0]
install_rpm(bin_name)
def uninstall():
uninstall_yum("teamviewer")
# -*- coding: utf-8 -*-
from setuphelpers import *
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
url = "https://www.teamviewer.com/en/download/windows/"
download_dict = {
"windows-x64": "https://download.teamviewer.com/download/TeamViewer_Setup_x64.exe",
"windows-x86": "https://download.teamviewer.com/download/TeamViewer_Setup.exe",
"debian_based-x64": "https://download.teamviewer.com/download/linux/teamviewer_amd64.deb",
"redhat_based-x64": "https://download.teamviewer.com/download/linux/teamviewer.x86_64.rpm",
}
download_url = download_dict[control.target_os + "-" + ensure_list(control.architecture)[0]]
latest_bin = download_url.split("/")[-1]
version_url = "https://community.teamviewer.com/English/categories/change-logs-en"
# Getting latest version from official sources
print("URL used is: %s" % url)
for bs_search in bs_find_all(version_url, "a", "href", proxies=proxies):
if "[Linux]" in bs_search.text:
version = bs_search.text.split(" ")[1].replace("v", "")
break
# Deleting binaries
remove_outdated_binaries("*")
# Downloading latest binaries
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)
# Checking version from file
if get_os_version() == "Windows" and "windows" in control.target_os.lower():
version_from_file = get_version_from_binary(latest_bin)
if Version(version_from_file, 4) != Version(version, 4) and version_from_file != "":
error("ERROR: Binary file version do NOT corresponds to online version")
else:
print("INFO: Binary file version corresponds to online version")
# 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 update-package-sources
return package_updated
# # Changing version of the package and validating update-package-sources
# return complete_control_version(control, version)
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
5cf774062c247747cc5fa1ef30f67f5641751e2b3e9137228d3b894f913f1ed1 : WAPT/control
71d3c188b8ebd8672d0ffcb36dae22598986ef3bf83981d468779f234a617c94 : WAPT/icon.png
f728b6c54c348fe87bb4d009efe955242cd1793f81d154ab7dcf611cc94cbf65 : luti.json
0f531fa5a9771dcac176bf7c0a30dc4a7582c0cbb448f2ea901f604b69aff270 : setup.py
b33355b0267264030b907080a7b6395a234e3557d926f11444ec6b4edb7f1633 : teamviewer.x86_64.rpm
db01848eff95a4a121220380acce99a6e32ac903c26016ac821f15570a41d344 : update_package.py