Commit d9cf1ebf by Feanil Patel

Explicitly allow read access to gocd log directory.

parent 3ed5bca7
...@@ -83,6 +83,17 @@ ...@@ -83,6 +83,17 @@
group: "{{ GO_SERVER_GROUP }}" group: "{{ GO_SERVER_GROUP }}"
force: no force: no
- name: ensure everyone can read go-server log files
file:
path: "/var/log/go-server"
state: directory
mode: "0755"
owner: "{{ GO_SERVER_USER }}"
group: "{{ GO_SERVER_GROUP }}"
tags:
- install
- install:base
- include: download_backup.yml - include: download_backup.yml
when: GO_SERVER_BACKUP_S3_BUCKET and GO_SERVER_BACKUP_S3_OBJECT and GO_SERVER_RESTORE_BACKUP when: GO_SERVER_BACKUP_S3_BUCKET and GO_SERVER_BACKUP_S3_OBJECT and GO_SERVER_RESTORE_BACKUP
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment