File permission config.yaml

fix issue with file permissions, allowing act-runner to read config
file.
This commit is contained in:
2024-01-31 22:29:32 -06:00
parent 705d2dfbe3
commit c36e51d3e8

View File

@@ -36,7 +36,7 @@
state: directory
owner: "{{ item.user }}"
group: "{{ item.user }}"
mode: 0655
mode: 0755
loop:
- { "path": "/etc/act_runner/", "user": "act-runner" }
- { "path":"/var/lib/act_runner", "user":"act-runner" }
@@ -45,9 +45,9 @@
ansible.builtin.copy:
src: act_config.yaml
dest: /etc/act_runner/config.yaml
owner: root
group: root
mode: 0655
owner: act-runner
group: act-runner
mode: 0766
- name: Copy service file
ansible.builtin.copy: