Skip to content

Commit

Permalink
Permit upgrade guacamole version
Browse files Browse the repository at this point in the history
actually as the binary compiled is already existing, it's never updating
the guacamole version
  • Loading branch information
Christian Iuga committed Jan 10, 2024
1 parent f9680e7 commit 4a27eaa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tasks/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit 4a27eaa

Please sign in to comment.