tis-rancher-desktop icon

rancher desktop

Silent install package for rancher desktop

1.19.3-1

  • package: tis-rancher-desktop
  • name: rancher desktop
  • version: 1.19.3-1
  • maintainer: Amel FRADJ
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 679.16 Mo

package           : tis-rancher-desktop
version           : 1.19.3-1
architecture      : x64
section           : base
priority          : optional
name              : rancher desktop
categories        : 
maintainer        : Amel FRADJ
description       : Rancher Desktop is an app that provides container management and Kubernetes on the desktop
depends           : 
conflicts         : 
maturity          : PROD
locale            : 
target_os         : windows
min_wapt_version  : 
sources           : 
installed_size    : 
impacted_process  : 
description_fr    : Rancher Desktop est une application qui permet de gérer les conteneurs et Kubernetes sur le bureau
description_pl    : Rancher Desktop to aplikacja, która zapewnia zarządzanie kontenerami i Kubernetes na pulpicie
description_de    : Rancher Desktop ist eine Anwendung, die Container-Management und Kubernetes auf dem Desktop bietet
description_es    : Rancher Desktop es una aplicación que proporciona gestión de contenedores y Kubernetes en el escritorio
description_pt    : O Rancher Desktop é uma aplicação que fornece gestão de contentores e Kubernetes no ambiente de trabalho
description_it    : Rancher Desktop è un'applicazione che fornisce la gestione dei container e Kubernetes sul desktop
description_nl    : Rancher Desktop is een app voor containerbeheer en Kubernetes op de desktop
description_ru    : Rancher Desktop - это приложение, которое обеспечивает управление контейнерами и Kubernetes на рабочем столе
audit_schedule    : 
editor            : 
keywords          : 
licence           : 
homepage          : 
package_uuid      : 40f2ac8b-5788-4521-8f7a-a8f19f0dc012
valid_from        : 
valid_until       : 
forced_install_on : 
changelog         : 
min_os_version    : 10.0
max_os_version    : 
icon_sha256sum    : f7a2f4ba9c6ad26c70c3cb373df24fdefe1adc409f84595b70aa5c12ef873760
signer            : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date    : 2025-06-25T02:00:29.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         : RGkxPVQl45n39Pxef0jf0vUSOAXvwftw0yiOlgVmDGf59Z8xbEp3NlufpGa+iLalCpvIkh/4CB21mt4p/DbTTlCr3BUJjPvyLMaFa1T5Sba+E9aHGWuXRmcB/B3nzwjDtZq4NdyMZtHfwYyjnW5TKt1XUKtAAIudtMbqXGLuJsRees4rajW+4DIN3ZrmKsCYKE/dxByta4Rf2cYS8pyBfZc1KFc8oCz+iXO590NyZQmwfa9N8O9eWW6MnebZ4rnxLBCqKgA56zygAloAiOC8gfu95C5Y7HhH2AZnyUFEHBABM0zTbO8ugQOcFPn5k14bPN073RK4z90r+6No4NPA6g==

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

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
    properties = {"WSLINSTALLED":"1"}
    bin_name = glob.glob('Rancher.Desktop.Setup.*.msi')[0]
    # Installing the software
    
    install_msi_if_needed(bin_name,properties=properties)


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

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


def update_package():
    result = False
    proxies = get_proxies()

    if not proxies:
        proxies = get_proxies_from_wapt_console()
   
    git_repo = "rancher-sandbox/rancher-desktop"
    url_api = "https://api.github.com/repos/%s/releases/latest" % git_repo   
    # Getting latest version information from official sources
    print("API used is: %s" % url_api)
    json_load = json.loads(wgets(url_api, proxies=proxies))

    for download in json_load["assets"]:
        if download["browser_download_url"].endswith('.msi'):
            url_dl = download["browser_download_url"]
            version = json_load["tag_name"].replace("v","")
            filename = download["name"]
            break

    if not isfile(filename):
        package_updated = True
        wget(url_dl,filename,proxies=proxies)

    #nettoyer les fichiers temporaires
    for f in glob.glob('*.msi'):
        if f != filename:
            remove_file(f)
    version =get_version_from_binary(filename)
    control.set_software_version(version)
    control.save_control_to_wapt()

842ed063862aebaa9e09cdb745d5557e9a6e8720f48ef200637a8e019f711180 : Rancher.Desktop.Setup.1.19.3.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
6c3c661863af495db5a5eab11326924057ffd6d2898e8b0fd6845333987dd8f4 : WAPT/control
f7a2f4ba9c6ad26c70c3cb373df24fdefe1adc409f84595b70aa5c12ef873760 : WAPT/icon.png
82406a8fb615a5de7aa79fc582f131bdf2bff568b96188f5fee96c6a3ad55258 : luti.json
2ab659863c0434b6288f43d4203f8fc41530eebbd564ce65f16b41d985a30f71 : setup.py
106d3563c30a340f5f695c8b64e3a9bf5fba69b62df7e16dba9ac28f5520820d : update_package.py