tis-waptagent-gui icon

WAPT Agent

Silent install package for WAPT Agent

2.6.1.17567-0
System and network
System and network

  • package: tis-waptagent-gui
  • 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: redhat_based
  • impacted_process: waptconsole,waptself,waptmessage,wapttray,waptexit
  • architecture: x64
  • signature_date:
  • size: 13.03 Mo
  • homepage : https://www.wapt.fr

package           : tis-waptagent-gui
version           : 2.6.1.17567-0
architecture      : x64
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          : PROD
locale            : 
target_os         : redhat_based
min_wapt_version  : 2.1
sources           : 
installed_size    : 
impacted_process  : waptconsole,waptself,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      : 2763fed9-3e56-46aa-8b32-ad1f1806690c
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 6dc8f2da8919852f729d395f63b92a33a0304323c3535981d335a50a83273ca5
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-11-04T18:14:18.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         : KYaDMrFRFs5w5tf3AfKeCzehG97SAw2SemzLmO5BBXX2LiUrKDjgVCzNPRiz6K1f/sOoy5S6JKCYapsORwl32Irsf8T7P34bJFUXbh+NjQKNfuKO7uPhrxikNqc1OxAEs+ryfkOxOYa9AysqAD1eXBDnOXf0Uf3n8I34NW1TjJ+z4dX89MkW5A9H2PzQpISxw+pZiyHXyPgJa2+WSDf2FHEBpWjFVqkP7n9COjXu6UJ7sySn/TNUpmQOWmPC520rUgIPbxjuIfTVBREJ5BSWTur2JGzKEo2W2H8uXaIwhCJvtN+xsvxAHZxf0rDC/9XfecDT0f/ZvtqmNzsMNfCq+Q==

# -*- coding: utf-8 -*-
from setuphelpers import *
import glob


def install():

    if is_redhat_based():
        waptagent_package_file = glob.glob('*.rpm')[0]
        if get_distrib_linux() == 'fedora':
            install_yum(waptagent_package_file)
        else:
            install_rpm(waptagent_package_file)

    else:
        install_apt('xdg-utils')
        install_apt('desktop-file-utils')
        waptagent_package_file = glob.glob('*.deb')[0]
        install_deb(waptagent_package_file)


def uninstall():
    if is_redhat_based():
        uninstall_yum('tis-waptagent-gui')
    else:
        uninstall_apt('tis-waptagent-gui')

# -*- coding: utf-8 -*-
from waptpackage import PackageEntry
from setuphelpers import *
from setupdevhelpers import *
import json

def update_package():


    for entry in bs_find_all("https://wapt.tranquil.it/wapt/releases/latest/","a","href"):
        lnk = entry.attrs['href']
        if lnk.endswith('.rpm'):
            if 'gui' in lnk:
                latest_bin = 'https://wapt.tranquil.it/wapt/releases/latest/' + lnk
                last_version = lnk.split('-')[3]


    wget(latest_bin,latest_bin.split('/')[-1])

    control.set_software_version(last_version)
    control.save_control_to_wapt()


38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
3db35089b0d2029735080027cc1c930a59f9ab394a319cde3794b649f3c9290b : WAPT/control
6dc8f2da8919852f729d395f63b92a33a0304323c3535981d335a50a83273ca5 : WAPT/icon.png
75136c39b4a3f849003f91605f7829e55f807b6ac47c3fd967edfe718685698a : luti.json
68e0acf035f5a2f42381adf83fe5d4ff799c62ba5870e6ce497691ec11124311 : setup.py
05329e5aab33358159bf2133aa694d0939e7b48d27503516463d9d9760be3121 : tis-waptagent-gui-2.6.1.17567-d56a3600.x86_64.rpm
f90a481799335d3c73c735658b2052296117fdcbfd088dcfe3a4422371867720 : update_package.py