
nsclient++
Paquet d’installation silencieuse pour nsclient++
0.9.13-1
- package: tis-nsclient
- name: nsclient++
- version: 0.9.13-1
- maintainer: Administrator
- target_os: windows
- architecture: x64
- signature_date:
- size: 36.06 Mo
- depends:
package : tis-nsclient
version : 0.9.13-1
architecture : x64
section : base
priority : optional
name : nsclient++
categories :
maintainer : Administrator
description : NSClient++ (nscp) aims to be a simple yet powerful and secure monitoring daemon
depends : tis-vcredist2015-2022
conflicts :
maturity : PROD
locale :
target_os : windows
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 : 1c03f897-0e1e-4752-97f4-1fb3ced0e206
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 8e14432ba2be217eed3a2134b9f4f76acf69cae201f0c37c98883f4e0484f5fb
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-08-16T13:01:06.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 : Cko0Fheleyoew1R1arwbcTuqu2Ys8Bd9+zXFXWpp5SADABpyV6yVn/p2dwaRe+by5LiP8MXZ6sfTMKJA+amXqz58xK9Xu36xBhTyDkHujewlXHveY+/KQfqEuLHMU8ARUeC6j+WCnWyulg4ycDS0pXi0uJloy1V9u3WzM0c1A7nWqmtrOchGUxvsV+m3+MccLtoKNDfk56GmgPmnPHRphifgYqzzsJye16mFN3x6LAvEKeY5SdyIu0r2KfJlFTrZbWMrz7U8wpjVnzZiDWLgJn2BZg9DXtY/lCUYFBA98W4WiJfMg16k7Qg9Zdij1WI2J6/2yQEZ8rspAIaQDTOdEg==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
bin_name = glob.glob("NSCP-*.msi")[0]
install_msi_if_needed(
bin_name,
timeout=600,
)
# -*- coding: utf-8 -*-
from setuphelpers import *
import json
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
api_url = "https://api.github.com/repos/mickem/nscp/releases/latest"
download_dict = {
"windows-x64": "-x64.msi",
"windows-x86": "-Win32.msi",
}
# Getting latest version information from official sources
print("API used is: %s" % api_url)
json_load = json.loads(wgets(api_url, proxies=proxies))
for to_download in json_load["assets"]:
if download_dict[control.target_os + "-" + ensure_list(control.architecture)[0]] in to_download["name"]:
download_url = to_download["browser_download_url"]
version = json_load["tag_name"].split("-")[-1].replace("v", "")
latest_bin = to_download["name"]
break
# Downloading latest binaries
print("Latest %s version is: %s" % (control.name, version))
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
else:
print("Binary is present: %s" % latest_bin)
# Deleting outdated binaries
remove_outdated_binaries(latest_bin)
# Checking version from file
version_from_file = get_version_from_binary(latest_bin)
if Version(version_from_file, 4) != Version(version, 4) and version_from_file != "":
print("Changing version to the version number of the binary")
# os.rename(latest_bin, latest_bin.replace(version, version_from_file))
version = version_from_file
else:
print("Binary file version corresponds to online version")
# Changing version of the package
if Version(version, 4) > Version(control.get_software_version(), 4):
print("Software version updated (from: %s to: %s)" % (control.get_software_version(), Version(version)))
package_updated = True
else:
print("Software version up-to-date (%s)" % Version(version))
control.set_software_version(version)
control.save_control_to_wapt()
# Validating update-package-sources
return package_updated
# # Changing version of the package and validating update-package-sources
# return complete_control_version(control, version)
1192a8dbf26434ce8b334aba228e12a641836974176d1c69f3011eaa70a0f569 : NSCP-0.9.13-x64.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
a24741235c1c2e2aa07d1f078064233ad693218d5faf6d3510277781816b5ee7 : WAPT/control
8e14432ba2be217eed3a2134b9f4f76acf69cae201f0c37c98883f4e0484f5fb : WAPT/icon.png
91f499987ebcf97f215e1f4f3d032107f5ef363e0a3df97de4a5baab284a872f : luti.json
a0591873d9690bf62aecfa44c5eac59f7df498966de95f0cccb861fb3b4c5940 : setup.py
b7557c851ce451402b28ae9adcb458a859e51d492c2ce5e9859f2fd314e24c1b : update_package.py