From e4a9b89d3274418a8161e79c8b693ab130b8c400 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adolfo=20G=C3=B3mez=20Garc=C3=ADa?= Date: Thu, 26 Sep 2024 03:23:27 +0200 Subject: [PATCH] Removed legacy non working actor as downloadables and updated required python version to 3.9 --- .../uds/osmanagers/LinuxOsManager/__init__.py | 28 +++---------------- 1 file changed, 4 insertions(+), 24 deletions(-) diff --git a/server/src/uds/osmanagers/LinuxOsManager/__init__.py b/server/src/uds/osmanagers/LinuxOsManager/__init__.py index 501eb70ce..3270e530c 100644 --- a/server/src/uds/osmanagers/LinuxOsManager/__init__.py +++ b/server/src/uds/osmanagers/LinuxOsManager/__init__.py @@ -50,14 +50,14 @@ downloads_manager().register( f'udsactor_{VERSION}_all.deb', - _('UDS Actor for Debian, Ubuntu, ... Linux machines (Requires python >= 3.6)'), + _('UDS Actor for Debian, Ubuntu, ... Linux machines (Requires python >= 3.9)'), _mypath + f'/files/udsactor_{VERSION}_all.deb', 'application/x-debian-package', ) downloads_manager().register( f'udsactor-{VERSION}-1.noarch.rpm', - _('UDS Actor for Centos, Fedora, RH, Suse, ... Linux machines (Requires python >= 3.6)'), + _('UDS Actor for Centos, Fedora, RH, Suse, ... Linux machines (Requires python >= 3.9)'), _mypath + f'/files/udsactor-{VERSION}-1.noarch.rpm', 'application/x-redhat-package-manager', ) @@ -65,7 +65,7 @@ downloads_manager().register( f'udsactor-unmanaged_{VERSION}_all.deb', _( - 'UDS Actor for Debian based Linux machines. Used ONLY for static machines. (Requires python >= 3.6)' + 'UDS Actor for Debian based Linux machines. Used ONLY for static machines. (Requires python >= 3.9)' ), _mypath + f'/files/udsactor-unmanaged_{VERSION}_all.deb', 'application/x-debian-package', @@ -74,29 +74,9 @@ downloads_manager().register( f'udsactor-unmanaged-{VERSION}-1.noarch.rpm', _( - 'UDS Actor for Centos, Fedora, RH, Suse, ... Linux machines. Used ONLY for static machines. (Requires python >= 3.6)' + 'UDS Actor for Centos, Fedora, RH, Suse, ... Linux machines. Used ONLY for static machines. (Requires python >= 3.9)' ), _mypath + f'/files/udsactor-unmanaged-{VERSION}-1.noarch.rpm', 'application/x-redhat-package-manager', ) -downloads_manager().register( - 'udsactor_2.2.0_legacy.deb', - _('Legacy UDS Actor for Debian, Ubuntu, ... Linux machines (Requires python 2.7)'), - _mypath + '/files/udsactor_2.2.0_legacy.deb', - 'application/x-debian-package', -) - -downloads_manager().register( - 'udsactor-legacy-2.2.1-1.noarch.rpm', - _('Legacy UDS Actor for Centos, Fedora, RH, ... Linux machines (Requires python 2.7)'), - _mypath + '/files/udsactor-legacy-2.2.1-1.noarch.rpm', - 'application/x-redhat-package-manager', -) - -downloads_manager().register( - 'udsactor-opensuse-legacy-2.2.1-1.noarch.rpm', - _('Legacy UDS Actor for OpenSUSE, ... Linux machines (Requires python 2.7)'), - _mypath + '/files/udsactor-opensuse-legacy-2.2.1-1.noarch.rpm', - 'application/x-redhat-package-manager', -)