Skip to content

Commit

Permalink
allow installing a specific openproject version
Browse files Browse the repository at this point in the history
  • Loading branch information
zerwes committed May 16, 2024
1 parent c1a9860 commit d9113bb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ openproject_hold_package: false

openproject_main_version: 13

# you can set this to something like openproject=13.3.1-1709106543.9f5d5716.bookworm
# in order to force installation of a fixed version
openproject_package_name: openproject

openproject_server:
hostname: "{{ inventory_hostname }}"
autoinstall: install
Expand Down
2 changes: 1 addition & 1 deletion tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

- name: install openproject
ansible.builtin.apt:
name: openproject
name: "{{ openproject_package_name | default('openproject') }}"
update_cache: true

- name: set openproject package on hold
Expand Down

0 comments on commit d9113bb

Please sign in to comment.