tis-glpi-agent
1.11-1
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.
17573 downloads
Download
See build result See VirusTotal scan

- package : tis-glpi-agent
- name : GLPI Agent
- version : 1.11-1
- categories :
- maintainer : Simon Fonteneau
- installed_size : 72138232
- editor :
- licence : GPL-2.0
- signature_date : 2024-12-10T19:03:28.000000
- size : 21.73 Mo
- locale : all
- target_os : macos
- impacted_process : glpi-agent
- architecture : arm
- Homepage : https://github.com/glpi-project/glpi-agent
package : tis-glpi-agent
version : 1.11-1
architecture : arm
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 : macos
min_wapt_version : 2.0
sources :
installed_size : 72138232
impacted_process : glpi-agent
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 : d3b2a7bd-d68c-4e2c-bdb0-3f65fca04a7b
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:03:28.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 : w/E7LmfZnL6tgZZaIbH3ho1lfsFxugxaCvwq5Xe7CInoEvqZ53PsKBwfDnfDB9MRTnAda+y1OvEQ2fPalFqhYTV+CNA2OC6yxKLnlGiQwnwQHpxV83cqq2Ydsajs3G+adU8GrMDuSLQAdZVbvdYXRQ8jI6OBQfilNH9x8mX9xPUeaZ90pX0J8mK/Dn0mxp/yJgEzUmuvxTnYVzKzFmBq4I1+vJdultl5bFzw52dF6JeuDsEr+Jb2vVa1uRJX8G/qe1wUGymPxlq+U7SopxMjLSA4t4horMdPjfNarJfImAJjTu0PKS5wG0jTeqZG+CNbqi/rJEpFt42ywdrM3txEUw==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
if installed_softwares('org.glpi-project.glpi-agent'):
uninstall_pkg('org.glpi-project.glpi-agent')
install_pkg(
glob.glob("*.pkg")[0],
key='pkgid:com.teclib.glpi-agent',
min_version=control.get_software_version()
)
def uninstall():
files_to_delete = [
"/Applications/GLPI-Agent",
"/var/log/glpi-agent.log",
"/usr/local/bin/dmidecode",
"/Library/LaunchDaemons/com.teclib.glpi-agent.plist"
]
for file in files_to_delete:
if isfile(file):
remove_file(file)
if isdir(file):
remove_tree(file)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import os
import json
def update_package():
proxies = get_proxies_from_wapt_console()
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("arm64.pkg"):
url_dl = download["browser_download_url"]
binary = url_dl.split("/")[-1]
found = True
break
version = binary.split('-')[2].split('_')[0]
allbin = glob.glob("*.pkg")
for f in allbin:
if f != binary:
remove_file(f)
if not isfile(binary):
wget(url_dl,binary,proxies=proxies)
control.set_software_version(version)
control.save_control_to_wapt()
100af920e61601f8853d29d9c2b9e2623534e2430d98bbc504f4da6f4f5ed962 : GLPI-Agent-1.11_arm64.pkg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
11d171f2ecc8ef94857801ef742e0ddce8d50890d240e8914d2ed987f0825203 : WAPT/control
ff336ad8093a16abe7028748cdebfd0b9e789dd85f0b38d35d3dbdadbc8b6e97 : WAPT/icon.png
c6246be77fa0d87cb8860fc9de433dfc02b56edaaca368712d5b6267141eeee4 : WAPT/wapt.psproj
421d2e0634983680fddf6cd14c512fe4e0dce7a9eb631506a5a1ff8de6f2657d : luti.json
7e0e281ab2dfcce0018ab0afbd48182c7a9103f01df6213f8e539d909937caa3 : setup.py
bb6e48fadd273be71ac85477d39b9ba4465854bdb50a5856b5691557142e123c : update_package.py