forked from ISTI-ansible-roles/ansible-roles
Add a task that installs redmine_issue_todo_lists to the redmine role. Install the plugin on the redmine dev instance.
This commit is contained in:
parent
7ac767247f
commit
c2fee652b2
|
@ -65,6 +65,8 @@ rm_addsubversionlinks_plugin: False
|
||||||
rm_wiki_external_plugin: False
|
rm_wiki_external_plugin: False
|
||||||
rm_pastebin_plugin: False
|
rm_pastebin_plugin: False
|
||||||
rm_issue_templates_plugin: False
|
rm_issue_templates_plugin: False
|
||||||
|
# TODO lists plugin: https://redmine.org/plugins/redmine_issue_todo_lists
|
||||||
|
rm_issue_todo_lists_plugin: False
|
||||||
#
|
#
|
||||||
# IMPORTANT: these are mutually exclusive. One of the two needs to be set to True
|
# IMPORTANT: these are mutually exclusive. One of the two needs to be set to True
|
||||||
ruby_use_mod_passenger: True
|
ruby_use_mod_passenger: True
|
||||||
|
|
|
@ -301,3 +301,10 @@
|
||||||
- Bundle install and reconfigure redmine
|
- Bundle install and reconfigure redmine
|
||||||
tags: [ 'redmine', 'redmine_plugins', 'redmine_plugins_issue_templates' ]
|
tags: [ 'redmine', 'redmine_plugins', 'redmine_plugins_issue_templates' ]
|
||||||
|
|
||||||
|
- name: Install the issue_todo_lists plugin
|
||||||
|
git: repo=https://github.com/canidas/redmine_issue_todo_lists dest={{ redmine_glob_root_dir }}/{{ redmine_inst_dir }}/plugins/redmine_issue_todo_lists update=no
|
||||||
|
when: rm_issue_todo_lists_plugin
|
||||||
|
notify:
|
||||||
|
- Bundle install and reconfigure redmine
|
||||||
|
tags: [ 'redmine', 'redmine_plugins', 'redmine_plugins_issue_todo_lists' ]
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue