Use specific tags for additionals and saml.
This commit is contained in:
parent
98dcaeeb54
commit
fea0af8fe2
|
@ -27,7 +27,7 @@ redmine_memcache_hosts:
|
||||||
#
|
#
|
||||||
redmine_external_ruby_ppa_enabled: false
|
redmine_external_ruby_ppa_enabled: false
|
||||||
redmine_external_ppa_repo: 'ppa:brightbox/ruby-ng'
|
redmine_external_ppa_repo: 'ppa:brightbox/ruby-ng'
|
||||||
ruby_ppa_version: 2.6
|
ruby_ppa_version: 2.7
|
||||||
|
|
||||||
redmine_sysvinit_service_name: '{{ redmine_inst_name }}'
|
redmine_sysvinit_service_name: '{{ redmine_inst_name }}'
|
||||||
redmine_systemd_service_name: 'unicorn@{{ redmine_inst_name }}.service'
|
redmine_systemd_service_name: 'unicorn@{{ redmine_inst_name }}.service'
|
||||||
|
@ -164,10 +164,10 @@ rm_dashboard_plugin_url: https://github.com/akpaevj/dashboard.git
|
||||||
rm_dashboard_plugin: False
|
rm_dashboard_plugin: False
|
||||||
rm_additionals_plugin: false
|
rm_additionals_plugin: false
|
||||||
rm_additionals_plugin_url: "https://github.com/AlphaNodes/additionals.git"
|
rm_additionals_plugin_url: "https://github.com/AlphaNodes/additionals.git"
|
||||||
rm_additionals_plugin_branch: stable
|
rm_additionals_plugin_branch: "3.0.5.2"
|
||||||
rm_saml_plugin: false
|
rm_saml_plugin: false
|
||||||
rm_saml_plugin_url: "https://github.com/alphanodes/redmine_saml.git"
|
rm_saml_plugin_url: "https://github.com/alphanodes/redmine_saml.git"
|
||||||
rm_saml_branch: stable
|
rm_saml_branch: "1.0.3"
|
||||||
rm_saml_entity_id: 'redmine_saml'
|
rm_saml_entity_id: 'redmine_saml'
|
||||||
rm_saml_assertion_consumer_service_url: "http://redmine.local/auth/saml/callback"
|
rm_saml_assertion_consumer_service_url: "http://redmine.local/auth/saml/callback"
|
||||||
rm_saml_issuer: "https://redmine.local/auth/saml/metadata"
|
rm_saml_issuer: "https://redmine.local/auth/saml/metadata"
|
||||||
|
|
|
@ -20,6 +20,6 @@
|
||||||
|
|
||||||
- name: Install the ruby packages needed to run redmine
|
- name: Install the ruby packages needed to run redmine
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
pkg: "{% if redmine_external_ruby_ppa_enabled %}{{ redmine_ppa_packages }}{% else %}{{ redmine_distribution_packages }}{% endif %}%}"
|
pkg: "{% if redmine_external_ruby_ppa_enabled %}{{ redmine_ppa_packages }}{% else %}{{ redmine_distribution_packages }}{% endif %}"
|
||||||
state: present
|
state: present
|
||||||
cache_valid_time: 1800
|
cache_valid_time: 1800
|
||||||
|
|
|
@ -335,7 +335,7 @@
|
||||||
- name: Install the SAML auth plugin
|
- name: Install the SAML auth plugin
|
||||||
ansible.builtin.git:
|
ansible.builtin.git:
|
||||||
repo: '{{ rm_saml_plugin_url }}'
|
repo: '{{ rm_saml_plugin_url }}'
|
||||||
dest: '{{ redmine_glob_root_dir }}/{{ redmine_inst_dir }}/plugins/additionals'
|
dest: '{{ redmine_glob_root_dir }}/{{ redmine_inst_dir }}/plugins/redmine_saml'
|
||||||
version: "{{ rm_saml_branch }}"
|
version: "{{ rm_saml_branch }}"
|
||||||
update: false
|
update: false
|
||||||
notify:
|
notify:
|
||||||
|
|
|
@ -25,8 +25,8 @@ redmine_pkg_dependencies:
|
||||||
- imagemagick
|
- imagemagick
|
||||||
|
|
||||||
redmine_ppa_packages:
|
redmine_ppa_packages:
|
||||||
- "ruby{{ ruby_ppa_version }}"
|
- ruby{{ ruby_ppa_version }}
|
||||||
- "ruby{{ ruby_ppa_version }}-dev"
|
- ruby{{ ruby_ppa_version }}-dev
|
||||||
- rails
|
- rails
|
||||||
- ruby-rmagick
|
- ruby-rmagick
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue