tis-octopus-deploy-tentacle icon

Octopus Deploy Tentacle

Paquet d’installation silencieuse pour Octopus Deploy Tentacle

8.3.3116-1

  • package: tis-octopus-deploy-tentacle
  • name: Octopus Deploy Tentacle
  • version: 8.3.3116-1
  • categories: Development
  • maintainer: WAPT Team,Tranquil IT,Amel FRADJ,
  • licence: proprietary_restricted,wapt_private
  • target_os: windows
  • architecture: x64
  • signature_date:
  • size: 76.14 Mo
  • homepage : https://octopus.com/

package           : tis-octopus-deploy-tentacle
version           : 8.3.3116-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      : 7c5c313f-64a9-4ade-8290-d327ebb31158
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-08-20T06:00:15.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         : UJlLlQQTc+1tvWslyHY8Q1Q4RKFQTUYEu11DN05zfkteCX1EAiym94o8C0Uc6s+teQ1CThQqlj6cG844l8UNM8U1RmYTndvUIz/2RCM5oq1kETCA4dBlWggVxipuhxKDmZyoIphYX+ASI6T6OQ7fMulXSzsZ1q948eYbwtHUOLfaEAZJ84gAgK7v+pzC+vWbLY/QNe2oPMU+phzhG/ibz3Zmi1/s0A06HO3AhsWiLacQpxsNo0m9Y8/BIe/4WglVzlLKuvhNg5QBSCTFNOkIv6aDIJfz+wQIRbpULilpXlpth8qFnBbQW4cb8X9Tx+9MQrQg4m5ovETC7Fa9AOHOng==

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

51b7d70b968c80d2f0c0bf0191e120705a0887fbf1200bf7a41133b9a2d36457 : Octopus.Tentacle.8.3.3116-net8.0-windows-win-x64.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
a3539c30a300e7fc4ec6bcc5a85a3ee20b8d9fb87f1b3ef37baf844a74e3e3ce : WAPT/control
3e46d718e2d97bef991cfc825f54999b74debaff12358651d3de90823c42bda7 : WAPT/icon.png
14aa5ba2eb3006c752ad73156afea7ba8bf267564166f51a545990d6caffbec5 : luti.json
d905eb82bff9fdaf1070d9a3b5bb912c036ca5188960b52de153b223aaedc876 : setup.py
65f212a1cf0fc8f7cdbb0a003698c9658cd6c535bf6d1a055f28f6f8c6766057 : update_package.py