tis-glpi-agent icon

GLPI Agent

Silent install package for GLPI Agent

1.11-10

  • package: tis-glpi-agent
  • name: GLPI Agent
  • version: 1.11-10
  • maintainer: Simon Fonteneau
  • licence: GPL-2.0
  • locale: all
  • target_os: debian_based
  • architecture: all
  • signature_date:
  • size: 4.23 Mo
  • installed_size: 72.14 Mo
  • homepage : https://github.com/glpi-project/glpi-agent

package           : tis-glpi-agent
version           : 1.11-10
architecture      : all
section           : base
priority          : optional
name              : GLPI Agent
categories        : 
maintainer        : Simon Fonteneau
description       : The GLPI Agent is a generic management agent. It can perform a certain number of tasks, according to its own execution plan, or on behalf of a GLPI server acting as a control point.
depends           : 
conflicts         : 
maturity          : PROD
locale            : all
target_os         : debian_based
min_wapt_version  : 2.0
sources           : 
installed_size    : 72138232
impacted_process  : 
description_fr    : L'Agent GLPI est un agent de gestion générique. Il peut effectuer un certain nombre de tâches, selon son propre plan d'exécution, ou pour le compte d'un serveur GLPI faisant office de point de contrôle.
description_pl    : 
description_de    : 
description_es    : 
description_pt    : 
description_it    : 
description_nl    : 
description_ru    : 
audit_schedule    : 
editor            : 
keywords          : glpi
licence           : GPL-2.0
homepage          : https://github.com/glpi-project/glpi-agent
package_uuid      : fe113bb1-ffe7-411e-9bf4-315b32372b71
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : ff336ad8093a16abe7028748cdebfd0b9e789dd85f0b38d35d3dbdadbc8b6e97
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2024-12-10T19:37:42.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         : HI+QCc02+beMfBwymPKmt/mL+wrlS0mf8JcQ3ZJWUUbbtOEJ1DlrZPkKe68D2BeJ05+c3UGSFlLIGgUenFYChB5iw2vat+/TLimdikh/Ezr7OQWktHtKxM1nUvuL2FktY8azRFlFsRmMLsz8WlQyBM22AMJxeM/i6cx3JrqWxBPno1sYyDsYRheXxNNnRxxmGvPtyY/QIyXEvpvqO4yTv/g3byqj+qZmLQYZAvQ3iK3GyNqopFzmU3LpOthNrz1FrBRgB0NmqU97c3BhMGR3LeGY+BhheY+NOuQ7+STvgyDJJ9dfyRfPgSmyjwLHdQIeWwZjjkSbNygdAMQwHorDDA==

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


def install():
    install_deb(glob.glob("*.deb")[0])

def uninstall():
    uninstall_apt('glpi-agent*')

# -*- coding: utf-8 -*-
from setuphelpers import *
import os
import json


def update_package():
    proxies = {}
    if isfile(makepath(user_local_appdata(), "waptconsole", "waptconsole.ini")):
        proxywapt = inifile_readstring(makepath(user_local_appdata(), "waptconsole", "waptconsole.ini"), "global", "http_proxy")
        if proxywapt:
            proxies = {"http": proxywapt, "https": proxywapt}

    currentpath = os.path.dirname(os.path.realpath(__file__))

    url_api = "https://api.github.com/repos/glpi-project/glpi-agent/releases"

    json_load = json.loads(wgets(url_api, proxies=proxies))

    found = False
    for releases in json_load:
        if found:
            break
        for download in releases["assets"]:
            if download["browser_download_url"].endswith("_all.deb") and "glpi-agent_" in download["browser_download_url"] :
                url_dl = download["browser_download_url"]
                binary = url_dl.split("/")[-1]
                found = True
                break


    alldeb = glob.glob("*.deb")
    for deb in alldeb:
        if deb != binary:
            remove_file(deb)

    if not isfile(binary):
        wget(url_dl,binary,proxies=proxies)

    version = binary.split('_')[1].split('-')[0]

    control.set_software_version(version)
    control.save_control_to_wapt()

38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
697108e14e622997c6d45669f9d2ba5b36c799b861896326abc5c610bc2aefb5 : WAPT/control
ff336ad8093a16abe7028748cdebfd0b9e789dd85f0b38d35d3dbdadbc8b6e97 : WAPT/icon.png
c6246be77fa0d87cb8860fc9de433dfc02b56edaaca368712d5b6267141eeee4 : WAPT/wapt.psproj
0a68e17a58ff51a7b357afb6dd98514fd07ac2362cc2cada18aef9be70e68ae8 : glpi-agent_1.11-1_all.deb
b7887d5de3da67f76b493a7bed157865c3cd492b7172e90e0554d529f18576d6 : luti.json
a562c3e8720ab827b52e611c5efe5421d4af2f64aaf91790d1335bec31879165 : setup.py
7a87fe3929d68546debfb65aa7dc65add3cf55c1f98b4d883a1adfdbe193bcf4 : update_package.py