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:
Andrea Dell'Amico 2017-08-29 19:01:18 +02:00
parent 7ac767247f
commit c2fee652b2
2 changed files with 9 additions and 0 deletions

View File

@ -65,6 +65,8 @@ rm_addsubversionlinks_plugin: False
rm_wiki_external_plugin: False
rm_pastebin_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
ruby_use_mod_passenger: True

View File

@ -301,3 +301,10 @@
- Bundle install and reconfigure redmine
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' ]