From 6236be85d84d91b9c4924e27768cc4fb3a3846fe Mon Sep 17 00:00:00 2001 From: Nicolas Arenas Date: Wed, 25 Jun 2025 11:53:43 +0200 Subject: [PATCH] refs 2293: Removes information for unwanted services --- bin/getRepoStatus.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/getRepoStatus.py b/bin/getRepoStatus.py index ffaaf79..f574de8 100644 --- a/bin/getRepoStatus.py +++ b/bin/getRepoStatus.py @@ -106,11 +106,11 @@ def main(): total_disk, used_disk, free_disk, percent_disk = get_disk_info() # Obtenemos el estado de los servicios listados, que almacenamos en un diccionario: - service_list = ['ssh', 'smbd', 'rsync'] + service_list = ['ssh', 'smbd', 'opentracker'] services_status = {service: get_service_status(service) for service in service_list} # Obtenemos el estado de los procesos listados, que almacenamos en un diccionario: - process_list = ['udp-sender', 'uftp', 'bttrack', 'btlaunchmany.bittornado'] + process_list = ['udp-sender', 'uftp', 'aria2c'] process_status = {process: get_process_status(process) for process in process_list} # Creamos un diccionario con toda la información obtenida: