Skip to content

Commit

Permalink
fixes on permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
pablodav committed Mar 19, 2019
1 parent a270bdf commit 2ef9c08
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
12 changes: 10 additions & 2 deletions tasks/plugins.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
# Plugins management playbook
# file tasks/plugins.yml

- name: ensure plugins directory
file: path="{{ redmine_plugins_dir }}" owner="{{ redmine_system_user }}" group="{{ redmine_system_user }}" mode=0755 state=directory
# This task is copied from redmine role now.
- name: set permissions on redmine dirs
file: dest={{ item }}
owner=www-data
group=www-data
state=directory
mode=u+rwxs,g+rwxs,o+rx
recurse=yes
with_items:
- "{{ redmine_plugins_dir }}"
tags:
- plugins

Expand Down
3 changes: 2 additions & 1 deletion tasks/scrum-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,5 @@
# More instructions:
# https://redmine.ociotec.com/boards/11/topics/64?r=69
# https://redmine.ociotec.com/projects/redmine-plugin-scrum/wiki/Wiki"
- pause: prompt="Please configure SCRUM and roles permissions as required in these instructions https://redmine.ociotec.com/boards/11/topics/64?r=69"
- name: pause with promt notification about the manual instructions to followup
pause: prompt="Please configure SCRUM and roles permissions as required in these instructions https://redmine.ociotec.com/boards/11/topics/64?r=69"

0 comments on commit 2ef9c08

Please sign in to comment.