
Microsoft Azure CLI
Silent install package for Microsoft Azure CLI
2.62.0-1
- package: tis-azure-cli
- name: Microsoft Azure CLI
- version: 2.62.0-1
- maintainer: Amel FRADJ
- licence: MIT license
- target_os: windows
- architecture: all
- signature_date:
- size: 68.22 Mo
- homepage : https://github.com/Azure/azure-cli
package : tis-azure-cli
version : 2.62.0-1
architecture : all
section : base
priority : optional
name : Microsoft Azure CLI
categories :
maintainer : Amel FRADJ
description : The Azure CLI is available across Azure services and is designed to get you working quickly with Azure, with an emphasis on automation
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process :
description_fr : Le CLI Azure est disponible pour tous les services Azure et est conçu pour vous permettre de travailler rapidement avec Azure, en mettant l'accent sur l'automatisation
description_pl : Interfejs wiersza polecenia platformy Azure jest dostępny we wszystkich usługach platformy Azure i został zaprojektowany z myślą o szybkiej pracy z platformą Azure, z naciskiem na automatyzację
description_de : Die Azure CLI ist für alle Azure-Dienste verfügbar und wurde entwickelt, damit Sie schnell mit Azure arbeiten können, wobei der Schwerpunkt auf der Automatisierung liegt
description_es : La CLI de Azure está disponible en todos los servicios de Azure y se ha diseñado para que pueda trabajar rápidamente con Azure, haciendo hincapié en la automatización
description_pt : A CLI do Azure está disponível em todos os serviços do Azure e foi concebida para o pôr a trabalhar rapidamente com o Azure, com ênfase na automatização
description_it : La CLI di Azure è disponibile per tutti i servizi di Azure ed è progettata per farvi lavorare rapidamente con Azure, con un'enfasi particolare sull'automazione
description_nl : De Azure CLI is beschikbaar voor alle Azure services en is ontworpen om je snel aan de slag te laten gaan met Azure, met de nadruk op automatisering
description_ru : Azure CLI доступен для всех служб Azure и предназначен для быстрой работы с Azure с упором на автоматизацию
audit_schedule :
editor :
keywords :
licence : MIT license
homepage : https://github.com/Azure/azure-cli
package_uuid : cb710d96-97c4-4ca6-b9a7-cdeb21a9e726
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 79ed4120c064a9942bac41589e2827458618e73aed6553e24b400cb04bd04e82
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature : a7aP+X0byUb1BrWcOcaHEZVTz+MVljaN1Y9Lqz3SRKHQHRu6fpkn9tNV0G5fdRKP+N0Jm6GjuLTtTo2I8qWeTxHrdKepWTRAtF+kBxJEpsPhhVEQN5ytEBpG7bLunTi0Ch4aO/zoxqf0AirR+dHX/uMpvQ0xpDw5juEpiyxSnR+NTrg/hclCiCPbhstm88M0mhYU/yoUD0ebXwCHUzsFtjtVS5Pm1dZtLv3EukdSGwk2Qj8Du0xx//oAubmEF2IcQOvjvKy9ebs4GZTXEi8J9aMLi2mxlMv547TokUgOmSQ3xbcSAQzwtxcnSDcpPwQlqMaFKPrhN+lqyY2bWlENTA==
signature_date : 2024-07-14T10:00:09.719046
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
# -*- 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('azure-cli-*.msi')[0]
# Installing the software
install_msi_if_needed(bin_name)
# -*- coding: utf-8 -*-
from setuphelpers import *
import re
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
git_repo = "Azure/azure-cli"
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["name"].split(" ")[-1]
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)
control.set_software_version(version)
control.save_control_to_wapt()
ff184f3708a7498ca0571f5230bec9ec5bc7f4f3da4c3d199fc02f5393b284e9 : setup.py
c6c998b2c424b90a6cf46c06b4cd2fae19f0b486ad41f29de6fc3dbc0af2bdd2 : update_package.py
79ed4120c064a9942bac41589e2827458618e73aed6553e24b400cb04bd04e82 : WAPT/icon.png
a5a97261381e1d0ad46ee15916abec9c2631d0201f5cc50ceb0197a165a0bbbf : WAPT/certificate.crt
2659ebd9b6557fb27df972b837556c8cf2918816a2a555f58f56e3d7ecd90fce : luti.json
5dbabd893d3876b7fb8c465d77ea1516dabe212d91f4bf7a99fb54f148d44f94 : azure-cli-2.62.0.msi
1fc3b0b3a05696aa0539ff2197048d959a8a082d352ebcdece1850486e5bb4aa : WAPT/control