diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-07-19 00:43:51 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-07-19 00:46:29 +0200 |
| commit | 43034bba4574f03c5d88f4380767c40e64d60c6e (patch) | |
| tree | c3e2b0b171792e494bd42b032c5f3529f3697d24 /roles/cgit | |
| parent | 457ea6648783258458bb12280d39d5816450ff62 (diff) | |
Refactor and clean up code
Diffstat (limited to 'roles/cgit')
| -rw-r--r-- | roles/cgit/tasks/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/cgit/tasks/main.yml b/roles/cgit/tasks/main.yml index a2436b50..17e7abaf 100644 --- a/roles/cgit/tasks/main.yml +++ b/roles/cgit/tasks/main.yml @@ -36,7 +36,7 @@ - name: "Deploy authorized_keys" become: true - ansible.builtin.authorized_key: + ansible.posix.authorized_key: user: "{{ cgit_ssh_user }}" key: "{{ item }}" state: present @@ -49,7 +49,7 @@ state: directory owner: "{{ cgit_ssh_user }}" group: "{{ cgit_ssh_user }}" - mode: "0755" + mode: "2755" - name: "Deploy cgitrc" become: true |
