tis-octopus-deploy-tentacle icon

Octopus Deploy Tentacle

Paquet d’installation silencieuse pour Octopus Deploy Tentacle

8.3.3103-1

  • package: tis-octopus-deploy-tentacle
  • name: Octopus Deploy Tentacle
  • version: 8.3.3103-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.3103-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      : a9cad66b-8dc1-4663-8692-f3ce36301dc1
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-10T23:07:28.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         : N1A6MB0Sww9WUQAQbshhhZA0IxFZRnEex+Qf9+BZWsUp065JDFN6OLH+sswMdBc2+39MJG8uk+VEneXZ9j/ukoZ/IxZ+bSvpX4OvZ7T+r+Te1VZpVCC6WyZ8G5JedJmYnuDoILuh9VrqRENFBfkFucRc2l4B6s8wxvzSeVf9yiry/5lTKp3HS/DtsHvKpMCfrXKk5s3VX8HEoy81rq1knuwCQBfPyFSuOUFjrZ11Bki07Qnm6Fra3D+I1mFZg3irmhBReYK3WHh1JGVOLN/9cxRdZ1QokRySq0Slj6nyTTd1NP+Gk/fxiyJEJum85wJdAEKUz/myjmgFnd1k9t+79A==

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

dca6afd0f59d36506d20debd934781ddca61713176cded1f05bfc86086635a12 : Octopus.Tentacle.8.3.3103-net8.0-windows-win-x64.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
645eed3e1cc29ea7e1fb3c3351b2440b7c920f1a814c7be80c0d371ccb8bcb5f : WAPT/control
3e46d718e2d97bef991cfc825f54999b74debaff12358651d3de90823c42bda7 : WAPT/icon.png
b566643a4729aa2e0ffbf7911c3ed393511464a19a082da2140f6db196f2d60e : luti.json
d905eb82bff9fdaf1070d9a3b5bb912c036ca5188960b52de153b223aaedc876 : setup.py
65f212a1cf0fc8f7cdbb0a003698c9658cd6c535bf6d1a055f28f6f8c6766057 : update_package.py