tis-unbound icon

Unbound

Paquet d’installation silencieuse pour Unbound

1.24.0-1

Les paquets PREPROD sont des paquets construits via LUTI. Ils restent généralement 5 jours en PREPROD, après quoi un scan VirusTotal est effectué.
Si le paquet réussit ce dernier contrôle, il est promu en PROD et publié sur le store.

  • package: tis-unbound
  • name: Unbound
  • version: 1.24.0-1
  • categories: System and network
  • maintainer: WAPT Team,Tranquil IT,Amel FRADJ,
  • licence: opensource_free,wapt_private
  • target_os: windows
  • architecture: x86
  • signature_date:
  • size: 26.58 Mo

package           : tis-unbound
version           : 1.24.0-1
architecture      : x86
section           : base
priority          : optional
name              : Unbound
categories        : System and network
maintainer        : WAPT Team,Tranquil IT,Amel FRADJ,
description       : Unbound is a validation, recursive and caching DNS resolver. It's designed for speed and simplicity, with modern features based on open standards
depends           : 
conflicts         : 
maturity          : PREPROD
locale            : 
target_os         : windows
min_wapt_version  : 2.3
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : Unbound est un résolveur DNS de validation, récursif et de mise en cache. Il est conçu pour être rapide et simple et intègre des fonctionnalités modernes basées sur des normes ouvertes
description_pl    : Unbound to sprawdzający poprawność, rekursywny i buforujący resolver DNS. Został zaprojektowany tak, aby był szybki i prosty oraz zawierał nowoczesne funkcje oparte na otwartych standardach
description_de    : Unbound ist ein validierender, rekursiver und Caching-DNS-Resolver. Er ist auf Schnelligkeit und Einfachheit ausgelegt und enthält moderne Funktionen, die auf offenen Standards basieren
description_es    : Unbound es un resolvedor DNS de validación, recursivo y de caché. Está diseñado para ser rápido y sencillo, e incorpora funciones modernas basadas en estándares abiertos
description_pt    : O Unbound é um resolvedor de DNS de validação, recursivo e de cache. Foi concebido para ser rápido e simples, e incorpora caraterísticas modernas baseadas em normas abertas
description_it    : Unbound è un resolver DNS di convalida, ricorsivo e con cache. È progettato per essere veloce e semplice e incorpora caratteristiche moderne basate su standard aperti
description_nl    : Unbound is een validatie, recursieve en caching DNS-resolver. Het is ontworpen om snel en eenvoudig te zijn en bevat moderne functies gebaseerd op open standaarden
description_ru    : Unbound - это DNS-резольвер с проверкой, рекурсией и кэшированием. Он разработан как быстрый и простой, и включает в себя современные функции, основанные на открытых стандартах
audit_schedule    : 
editor            : 
keywords          : 
licence           : opensource_free,wapt_private
homepage          : 
package_uuid      : fc2542eb-9e19-4f5d-89f3-2bc1c8129bbd
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 
max_os_version    : 
icon_sha256sum    : 25c3e76c29bfbb86859f4f77f8705aaf45725db8a9df83f512f857a11a33794e
signer            : test
signer_fingerprint: b82fc8ef4a4475c0f69ac168176c2bfc58f572eb716c4eadd65e4785c155dd8e
signature_date    : 2025-09-18T08:59:02.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         : oUdsUdIu0pd/OyePKUqvu8hPLMmnITZ7a/NBRkYYCfqwVerLFj0iowEmMPVy48urNosyx9XhFFFLTl5JnZZh28CfFCD1TC6nEmokcFTw66ktxK0NFFypZABBnj6NSeJBjfNChTTnhYrc4lfR0oZN44N133GOWniXxyPhiJ29CnayUQk2Mq87lsS7zpxA0Df9URX2nmu/RrDIDPLh8zFXw16hyN5ac6DBfR+gamCc8e5hJEkBYEKb+JYT46D63gSx6xwYmHs1I++2aWYmfTNE61enp05ZpEcvgX9dCJjYfynpq/nwe0c1zQzHR3e0NVmRyilTKFhTrSgRZOwVYqg+0A==

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

r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()

"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls


def install():
    # Declaring local variables
    bin_name = glob.glob("unbound_setup_*.exe")[0]
    # Installing the software

    install_exe_if_needed(bin_name, silentflags="/S", key="Unbound", min_version=control.get_software_version(),
    get_version=get_version,
    timeout=600,
    )


def get_version(app_registry_dict):
    return app_registry_dict["version"].split("-")[0]

# -*- coding: utf-8 -*-
from setuphelpers import *
import json
import re
import requests


def update_package():
    # Declaring local variables
    package_updated = False
    proxies = get_proxies()
    if not proxies:
        proxies = get_proxies_from_wapt_console()
    app_name = control.name

    # Getting latest version from official sources
    re_versions = re.compile(r'unbound_setup_(\d+\.\d+\.\d+)(?:-w32)?\.exe')
    index = wgets("https://www.nlnetlabs.nl/downloads/unbound/", proxies=proxies)

    for versionbutt in sorted(re_versions.findall(index), key=lambda p: (Version(p)), reverse=True):
        if control.architecture == "x86":
            latest_bin = "unbound_setup_%s-w32.exe" % versionbutt
            download_url = "https://www.nlnetlabs.nl/downloads/unbound/%s" % latest_bin

        if not requests.head(download_url, proxies=proxies).status_code == 404:
            version = versionbutt
            break

    # remove files
    for f in glob.glob("*.exe"):
        if f != latest_bin:
            remove_file(f)

    # Downloading latest binaries
    wget(download_url, latest_bin, proxies=proxies)

    control.set_software_version(version)
    control.save_control_to_wapt()

01ca7fe94636e5a08fcb73849d3b5df25d51e2c82f4dd1a08f01798b25899819 : WAPT/certificate.crt
9ad9c931c3709a9cc2c299db6a6a438853d0d48271f433ca2b5b731b85fae3f2 : WAPT/control
25c3e76c29bfbb86859f4f77f8705aaf45725db8a9df83f512f857a11a33794e : WAPT/icon.png
ce4495ac6c09ecb2e38157a3620fe0a420a54c2372f17e2638108995ff432a0a : luti.json
3b23f42badf4bae667b46acd24f465b10662b21ecff3cd95890e0ecce6d2b79c : setup.py
9bc90a34c9ed75f69ec8c1963d017be838e2ae81c1be53edcbc6a2f2efbc1177 : unbound_setup_1.24.0-w32.exe
14dc012c2bd0d240b47bc6ac858b61908306fe195b1c19c3f6d6c09d45e1030d : update_package.py