tis-waptupgrade icon

WAPT Agent

Silent install package for WAPT Agent

2.6.0.17293-0

  • package: tis-waptupgrade
  • name: WAPT Agent
  • version: 2.6.0.17293-0
  • categories: System and Network
  • maintainer: WAPT Team,Jimmy PELÉ,Hubert TOUVET,Simon Fonteneau
  • editor: Tranquil IT
  • target_os: macos
  • impacted_process: waptconsole,waptself,wapt-get,waptmessage,wapttray,waptexit
  • architecture: arm
  • signature_date:
  • size: 85.53 Mo
  • homepage : https://www.wapt.fr

package           : tis-waptupgrade
version           : 2.6.0.17293-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          : PROD
locale            : 
target_os         : macos
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      : 9ef217e1-d29c-4fa1-acae-c21cf6e2fd5a
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-06-09T17:05:40.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         : jL1U8iZh72Em7tqEY5VF6Jkv8QqHjzMxN9iFmn8RZLKQTPGs9C3HxeSaCz0IZCHg27GObNqI6nX9Fvo2GTUghAd5mJEOHjXlKcmOx5cNZF4IldlRHefHWL0nf4L4W1Ezytmt6rWWp2gys88xGMlYu5N5OquDt1OrvicfFQzUBVJEvYk1HsOIqn23yEKPdFuFcIf+IEnxYPwn7o9gj63+5kiMCb4iL5wsQFnZD8SAbuYXJ/5UsR3x02cj6Fnx/CqSZRowhFr6RJIBgDXInxnFpIuO7jI5WqE0zmPGmOa7azpGxFedulk4jVkDj5Kq5IW4tu02w778i6pRPsLBUvtdeA==

# -*- coding: utf-8 -*-
from setuphelpers import *
import time
import subprocess

os_name = "%(os_name)s"


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():
    waptagent_package_file = glob.glob('*.pkg')[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,'/opt/wapt/waptsetup.pkg')
        subprocess.Popen("sleep 60 && installer -package /opt/wapt/waptsetup.pkg -target / && rm -f /opt/wapt/waptsetup.pkg && launchctl kickstart -k system/it.tranquil.waptservice",shell=True, executable='/bin/bash', start_new_session=True)
    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 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()


38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
56cf49695047507ea5d3f0b969fa2ad88cbfd1f5b0c68c83961c8b7557f2ad82 : WAPT/control
6dc8f2da8919852f729d395f63b92a33a0304323c3535981d335a50a83273ca5 : WAPT/icon.png
a3064f418db4a5bff87e256fd410accfd701d770022d0e46d365eff316128d4f : luti.json
67799c69852809c578e7f92a21f0925ca3b4559dd41731574a8ce3f03d1a9708 : setup.py
cfa196e510a4621242330ea3e960dfea05030fdcc1c40dfd854faeee913b4522 : tis-waptagent-2.6.0.17289-67d38df2-macos-all-arm64.pkg
46c9a0f8a72bb5e12461c7333240355fc8f232973ae438ae36e9f241558f38d5 : update_package.py