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: x64
  • signature_date:
  • size: 27.23 Mo

package           : tis-unbound
version           : 1.24.0-1
architecture      : x64
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      : bfd51b7b-aba4-47be-80b0-55cdb1b22d93
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:57:41.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         : EJ3c7HMUUpFs9m3DV9OBq23hcN2xUUkNgoKu3qgjCSG3uHXbPfztnHbMD/jo0JSfMi+rV4l85uFzC9lMBKspsA5huX/pJNekquxd882q7Z0ZiGA4wXpYoVwkZFB1g+nwhFciICr417i6ANKh3nhQzWnZjGeDBXD22/NVUpxWdbbfQTRvIwHIJ8oz2kVgv+61m65dMpndYBhMR0OILydMEn8n3+yr0xg3Q8cVZ0+5cPhNRxaGFR+sAmCsdI7MfWhRGIpu67N9VJemYBxI9jMAkDrBiv56cuXWlkQz/lnqlLcl5nEcQga/cvYAsauFU6teRVRVgQ9YzX6m5lUqV9FeKA==

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

r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
{
   "key":"Unbound",
   "name":"Unbound",
   "version":"1.21.0",
   "install_date":"",
   "install_location":"",
   "uninstall_string":"\"C:\\Program Files\\Unbound\\uninst.exe\"",
   "publisher":"NLnet Labs",
   "system_component":0,
   "win64":true
  }

"""
# 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())

# -*- 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+)\.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 == "x64":
            latest_bin = "unbound_setup_%s.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
c2952549b00f843f7e75b2a3aae84e7bd20261c1f650a0321a6e46a163c445ef : WAPT/control
25c3e76c29bfbb86859f4f77f8705aaf45725db8a9df83f512f857a11a33794e : WAPT/icon.png
008bd9973a7583f94e03a547050f8ebe9b49177048ee9736f165d3a810ea5f04 : luti.json
c2b83ecb650f3c7788b240e5437427f62dc33b2a98c9d7e73f9a79f9f99ff1c3 : setup.py
d802fa0b198053dd4f0f99acc7b3f12eee56e092399b796789f868dfe049d39c : unbound_setup_1.24.0.exe
b8e9847e48402dc7add4208130910ad5d7e1fdbd2d7f8876100d1e61c11bd5a7 : update_package.py