From 60bc04d5afbb652d291b45524e5e7644904ca1de Mon Sep 17 00:00:00 2001 From: Aidaho Date: Sat, 6 Jul 2024 13:08:59 +0300 Subject: [PATCH] v7.3.2.0: Update nginx version in ansible-galaxy install command The version of nginx being installed via the ansible-galaxy command in the installation.py file has been updated. The version number has been changed from 0.23.2 to 0.24.2, adhering to up-to-date libraries and compatibility improvements that the new version provides. --- app/modules/service/installation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/modules/service/installation.py b/app/modules/service/installation.py index c5bece0c..743b0479 100644 --- a/app/modules/service/installation.py +++ b/app/modules/service/installation.py @@ -176,7 +176,7 @@ def generate_service_inv(json_data: json, installed_service: str) -> object: is_docker = json_data['services'][installed_service]['docker'] if installed_service == 'nginx' and not os.path.isdir('/var/www/haproxy-wi/app/scripts/ansible/roles/nginxinc.nginx'): - os.system('ansible-galaxy install nginxinc.nginx,0.23.2 --roles-path /var/www/haproxy-wi/app/scripts/ansible/roles/') + os.system('ansible-galaxy install nginxinc.nginx,0.24.2 --roles-path /var/www/haproxy-wi/app/scripts/ansible/roles/') for k, v in json_data['servers'].items(): server_ip = v['ip']