mirror of
https://github.com/davestephens/ansible-nas
synced 2025-01-26 10:15:14 +00:00
refactor: open permissions
The mumble docker image has the uid and gid baked in at image creation. In order for the application in the container to write to the mounted volume we're opening permissions to the mumble data directory. Refs: #620
This commit is contained in:
parent
1f33ef3ba9
commit
b0e69bd74b
1 changed files with 3 additions and 1 deletions
|
@ -5,7 +5,9 @@
|
|||
file:
|
||||
path: "{{ item }}"
|
||||
state: directory
|
||||
mode: "0755"
|
||||
# The mumble image gets uid/gid at build time, and uses 1000 for both, by default.
|
||||
# This ends up with permission denied on the data directory, unless we fully open the permissions.
|
||||
mode: "0777"
|
||||
with_items:
|
||||
- "{{ mumble_data_directory }}"
|
||||
|
||||
|
|
Loading…
Reference in a new issue