
Octopus Deploy Tentacle
Paquet d’installation silencieuse pour Octopus Deploy Tentacle
8.3.2892-1
- package: tis-octopus-deploy-tentacle
- name: Octopus Deploy Tentacle
- version: 8.3.2892-1
- categories: Development
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ,
- licence: proprietary_restricted,wapt_private
- target_os: windows
- architecture: x64
- signature_date:
- size: 76.11 Mo
- homepage : https://octopus.com/
package : tis-octopus-deploy-tentacle
version : 8.3.2892-1
architecture : x64
section : base
priority : optional
name : Octopus Deploy Tentacle
categories : Development
maintainer : WAPT Team,Tranquil IT,Amel FRADJ,
description : Octopus Deploy is a user-friendly automated deployment tool for .NET developers
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version : 2.3
sources :
installed_size :
impacted_process :
description_fr : Octopus Deploy est un outil de déploiement automatisé convivial pour les développeurs .NET
description_pl : Octopus Deploy to przyjazne dla użytkownika narzędzie do automatycznego wdrażania dla programistów .NET
description_de : Octopus Deploy ist ein benutzerfreundliches, automatisiertes Deployment-Tool für .NET-Entwickler
description_es : Octopus Deploy es una herramienta de despliegue automatizado fácil de usar para desarrolladores .NET
description_pt : Octopus Deploy é uma ferramenta de implantação automatizada de fácil utilização para desenvolvedores .NET
description_it : Octopus Deploy è uno strumento di distribuzione automatica di facile utilizzo per gli sviluppatori .NET
description_nl : Octopus Deploy is een gebruiksvriendelijke geautomatiseerde implementatietool voor .NET-ontwikkelaars
description_ru : Octopus Deploy - это удобный инструмент автоматического развертывания для разработчиков .NET
audit_schedule :
editor :
keywords :
licence : proprietary_restricted,wapt_private
homepage : https://octopus.com/
package_uuid : 63a0fa64-88b9-4d4f-afc0-1a7ba4cd0699
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 3e46d718e2d97bef991cfc825f54999b74debaff12358651d3de90823c42bda7
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-04-16T06:23:49.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 : cMk4EmERYxoPzBuQxgj4fRhm8tTeESK482St+1T05AWLt5Sp4bvLigwKrFStFY8KSBAuxojoWjBxla2GyXmV6GGJdm2qMx3xIoufNAybRC1cRI4uO91JMXqGPSMJtNjC21juJ0OIGHe4T7sONp6/GhyEq7grNmKbk2jhXoDlzk12o+VOI8pM4kNu3e0Shf2BqI6ltQvVimyTvTAXCIy8pnUQMq7WuUYnB/Q9HTP7HwDNRWprOiCTzZgnW+czI7LsUOgrJOmiuqakYZlAla3bKz41OdY3Mg9ymsadWVJ4FnBYU2e3RJz9o3405TTsQjSJLHbwR6Rhip+Fw9JR//qN8w==
# -*- 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('Octopus.Tentacle.*.msi')[0]
# Installing the software
install_msi_if_needed(bin_name)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import glob
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies_from_wapt_console()
if not proxies:
proxies = get_proxies()
url_base = "https://octopus.com/downloads/tentacle"
response = requests.get(url_base,allow_redirects=True, proxies=proxies)
# Extract the correct div using bs_find_all
divs = bs_find_all(response.text, "tr", proxies=proxies)
msi_file = None
for div in divs:
if msi_file:
break
links = div.find_all('a', href=True)
for link in links:
if link['href'].endswith('.msi'):
href = link['href']
msi_file = href
download_url = msi_file
latest_bin = msi_file.split('/')[-1]
version = '.'.join(latest_bin.split('.')[2:5]).split('-')[0]
break
# Downloading latest binaries
print("Download URL is: %s" % download_url)
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, proxies=proxies)
package_updated = True
else:
print("Binary is present: %s" % latest_bin)
# Deleting outdated binaries
for f in glob.glob('*.msi'):
if f != latest_bin:
remove_file(f)
version = get_version_from_binary(latest_bin)
# Mettre à jour le package
control.set_software_version(version)
control.save_control_to_wapt()
a0858774c9792fa679c7303f4f83c763c28540c240a149b52af777c4534a4841 : Octopus.Tentacle.8.3.2892-net8.0-windows-win-x64.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
7e282265bb9d9d320e2107b9011d406670b3c72472a251b3d08733bffc707580 : WAPT/control
3e46d718e2d97bef991cfc825f54999b74debaff12358651d3de90823c42bda7 : WAPT/icon.png
ce27dd6637a26486a727b7e6016d65357c20a5a3d0db1141dc335c9fe397d418 : luti.json
d905eb82bff9fdaf1070d9a3b5bb912c036ca5188960b52de153b223aaedc876 : setup.py
65f212a1cf0fc8f7cdbb0a003698c9658cd6c535bf6d1a055f28f6f8c6766057 : update_package.py