WAPT Agent
Paquet d’installation silencieuse pour WAPT Agent
2.6.1.17567-0
System and network
System and network
Les paquets PREPROD sont des paquets construits via LUTI.
Ils restent généralement 5 jours en PREPROD, après quoi un scan VirusTotal est effectué.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.
- package: tis-waptupgrade
- name: WAPT Agent
- version: 2.6.1.17567-0
- categories: System and Network
- maintainer: WAPT Team,Jimmy PELÉ,Hubert TOUVET,Simon Fonteneau
- editor: Tranquil IT
- target_os: debian_based
- impacted_process: waptconsole,waptself,wapt-get,waptmessage,wapttray,waptexit
- architecture: arm
- signature_date:
- size: 49.86 Mo
- homepage : https://www.wapt.fr
package : tis-waptupgrade
version : 2.6.1.17567-0
architecture : arm
section : base
priority : critical
name : WAPT Agent
categories : System and Network
maintainer : WAPT Team,Jimmy PELÉ,Hubert TOUVET,Simon Fonteneau
description : Deployement of the WAPT Agent (with the WAPT Console)
depends :
conflicts :
maturity : PREPROD
locale :
target_os : debian_based
min_wapt_version : 2.1
sources :
installed_size :
impacted_process : waptconsole,waptself,wapt-get,waptmessage,wapttray,waptexit
description_fr : Déploiement de l'agent WAPT (avec la console WAPT)
description_pl :
description_de :
description_es :
description_pt :
description_it :
description_nl :
description_ru :
audit_schedule :
editor : Tranquil IT
keywords :
licence :
homepage : https://www.wapt.fr
package_uuid : 9bdb0bf1-7176-4c4c-b48d-f5c6c0f31acd
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 6dc8f2da8919852f729d395f63b92a33a0304323c3535981d335a50a83273ca5
signer : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date : 2025-10-30T17:17:03.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 : lf+xbv+1QMWiLRKuCt9t0iJETX1gqddp4/IIA8toshT3xl+J0J+rGbu8Y/+Be2wIFxeZYxTMq7lwS07t/QCYJrTHim9JJGarI5RPTmiGMC4D2gDSDvdx9EwQLZKp25z3nBRM7NmXYROvrVpmCryc1P4wdqLwrHF41ZiGZMpC1ddeAwVnxl1VdDA0XPjkt695EMHoKmmEvC/wtRzqKbC3njb/83GAG2PWJnWWqZ1egjNuibnc0vHW/hx5j6wghp4FyZ4bgpcn0Fdg4BDIcdH6NZ/sNItlmRNJByOxhO1Rooj8yHvbKKcIICJJyU8Jl9aGYy9/B6KKtC8bMi/MxfJgfg==
# -*- coding: utf-8 -*-
from setuphelpers import *
import time
import glob
temp_dir = makepath("/tmp")
def create_systemd_onetime_task(name, user, cmd, delay_minutes=2):
"""
Create cron task
"""
run_time = time.localtime(time.time() + delay_minutes * 60)
hour_min = time.strftime("%H:%M:%S", run_time)
date = time.strftime("%Y-%m-%d", run_time)
cmd = "systemd-run --on-calendar='%s %s' --description='%s' %s " % (date, hour_min, name, cmd)
print("Create scheduled task with command : %s" % cmd)
run(cmd)
def installed_wapt_version():
try:
with open(os.path.join(WAPT.wapt_base_dir, "version-full")) as fver:
installed_wapt_version = fver.read()
except:
installed_wapt_version = "0.0.0.0"
return installed_wapt_version
def install():
if is_redhat_based():
waptagent_package_file = glob.glob('*.rpm')[0]
else:
waptagent_package_file = glob.glob('*.deb')[0]
print("Install %s" % control.asrequirement())
if isfile(makepath(WAPT.wapt_base_dir, "waptserver", "server.py")):
print("Wapt server installed on this host. Aborting")
return "OK"
package_wapt_version = control.get_software_version()
if force or Version(installed_wapt_version()) < package_wapt_version:
filecopyto(waptagent_package_file, temp_dir)
waptagent_file = makepath(temp_dir, waptagent_package_file)
install_cmd = ""
if is_redhat_based():
install_cmd = "yum install %s -y" % waptagent_file
elif is_debian_based():
install_cmd = "/usr/bin/apt install -f -y %s" % waptagent_file
create_systemd_onetime_task("waptupgrade", "root", install_cmd)
else:
print("Your current wapt (%s) is same or more recent than the upgrade package (%s). Skipping..." % (installed_wapt_version, package_wapt_version))
def audit():
# Comparing installed WAPT agent version and package version
(package_wapt_version, package_packaging) = control.version.split("-")
if Version(installed_wapt_version()) < control.get_software_version():
print(
"The installed version of the WAPT agent and the version of the package are not corresponding. The installation may have just finished. If this warning persists one day after installation, please take this into consideration."
)
return "WARNING"
else:
print("The installed version of the WAPT agent and the version of the package are corresponding.")
return "OK"
# -*- coding: utf-8 -*-
from waptpackage import PackageEntry
from setuphelpers import *
import json
def update_package():
data = json.loads(wgets('https://wapt.tranquil.it/wapt/releases/latest/wapt_agent_list.json'))
for entry in data:
p = PackageEntry()
p.package = 'tis-waptupgrade'
p.min_os_version = entry['wapt_min_os_version']
p.max_os_version = entry['wapt_max_os_version']
p.target_os = entry['wapt_target_os']
p.architecture = entry['wapt_architecture']
if "tis-waptagent-gui" in entry['url'] :
continue
if not WAPT.host_capabilities().is_matching_package(p):
continue
matchentry = entry
break
wget(matchentry['url'],matchentry['url'].split('/')[-1],sha256=matchentry['file_sha256'])
control.target_os = matchentry['wapt_target_os']
control.min_os_version = matchentry['wapt_min_os_version']
control.max_os_version = matchentry['wapt_max_os_version']
control.architecture = matchentry['wapt_architecture']
control.set_software_version(matchentry['wapt_version'])
control.save_control_to_wapt()
01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
1928e40f9600cb9e37f2237d31f7e2a709f402d7ed7f9aed9a3495fafe182a4b : WAPT/control
6dc8f2da8919852f729d395f63b92a33a0304323c3535981d335a50a83273ca5 : WAPT/icon.png
f6bad449d076bed4d20eadc965c256c6838ac95f4038edb75f58628ec0e4862f : luti.json
06f06db0fda321601b2e6923c18f033e57e49fe300ecffe07d8ab6122bf180c1 : setup.py
c20150b798f97443b7c1fafa950f96a865d8980e1f02b423fe1cc1827f6e7845 : tis-waptagent-2.6.1.17567-d56a3600-armhf.deb
46855e804ab5fdc78d104518b46f8af8be373d418bf0b30c94da6adb28853f53 : update_package.py