From 4a27eaa011c0936427e652b5e2fca86bf2e87e0c Mon Sep 17 00:00:00 2001 From: Christian Iuga Date: Wed, 10 Jan 2024 11:34:55 +0100 Subject: [PATCH] Permit upgrade guacamole version actually as the binary compiled is already existing, it's never updating the guacamole version --- tasks/install.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tasks/install.yml b/tasks/install.yml index 9e732ee..cffe4ea 100644 --- a/tasks/install.yml +++ b/tasks/install.yml @@ -10,6 +10,7 @@ src: "{{ guacamole_src_dir + '/' + guacamole_server_package }}" dest: "{{ guacamole_src_dir }}" remote_src: true + register: extract become: true - name: install | Checking If Guacamole Server Is Installed @@ -23,7 +24,7 @@ chdir: "{{ guacamole_src_dir + '/guacamole-server-' + guacamole_version }}" become: true register: _guacamole_config_server_build - when: not _guacamole_server_installed['stat']['exists'] + when: not _guacamole_server_installed['stat']['exists'] or extract.changed - name: install | Compiling Guacamole Server # noqa no-handler community.general.make: