diff --git a/CHANGELOG.md b/CHANGELOG.md index cd94da6..12ec607 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [7.0.0] - 2025-07-18 + +### Changed + +- Run the new extension-less scripts from the cloning engine + ## [6.3.0] - 2025-07-18 ### Added diff --git a/linux/debian/changelog b/linux/debian/changelog index a613f3a..2069095 100644 --- a/linux/debian/changelog +++ b/linux/debian/changelog @@ -1,3 +1,9 @@ +ogagent (7.0.0-1) stable; urgency=medium + + * Run the new extension-less scripts from the cloning engine + + -- OpenGnsys developers Fri, 18 Jul 2025 14:27:04 +0200 + ogagent (6.3.0-1) stable; urgency=medium * Add new parameter for Configurar diff --git a/src/VERSION b/src/VERSION index 798e389..66ce77b 100644 --- a/src/VERSION +++ b/src/VERSION @@ -1 +1 @@ -6.3.0 +7.0.0 diff --git a/src/opengnsys/workers/oglive_worker.py b/src/opengnsys/workers/oglive_worker.py index 7390bdc..b0362fc 100644 --- a/src/opengnsys/workers/oglive_worker.py +++ b/src/opengnsys/workers/oglive_worker.py @@ -259,12 +259,12 @@ class ogLiveWorker(ServerWorker): self.REST.sendMessage ('clients/status/webhook', body) def interfaceAdmin (self, method, parametros=[]): - if method in ['Apagar', 'CambiarAcceso', 'Configurar', 'CrearImagen', 'CrearImagenGit', 'ModificarImagenGit', 'EjecutarScript', 'getConfiguration', 'getIpAddress', 'IniciarSesion', 'InventarioHardware', 'InventarioSoftware', 'Reiniciar', 'RestaurarImagen', 'RestaurarImagenGit']: + if method not in ['ConsolaRemota', 'procesaCache']: ## python logger.debug (f'({method}) is a python method') - exe = '{}/{}.py'.format (self.pathinterface, method) + exe = '{}/{}'.format (self.pathinterface, method) proc = [exe]+parametros - else: ## ConsolaRemota procesaCache + else: ## bash logger.debug (f'({method}) is a bash method') exe = '{}/{}'.format (self.pathinterface, method)