change umask

This commit is contained in:
SebClem 2023-02-17 17:10:23 +01:00
parent 6ca04c782b
commit 84d5459e23
Signed by: sebclem
GPG Key ID: 5A4308F6A359EA50

View File

@ -18,7 +18,7 @@
path: "{{ home }}"
owner: "{{ user }}"
group: "{{ group }}"
mode: 0700
mode: 0770
state: directory
- name: Ensure ssh dir is present
@ -34,14 +34,14 @@
path: "{{ pool }}"
owner: "{{ user }}"
group: "{{ group }}"
mode: 0700
mode: 0770
state: directory
- name: Create autorized key entry
ansible.posix.authorized_key:
user: "{{ user }}"
key: "{{ item.key }}"
key_options: 'command="cd {{ pool }}/{{ item.host }};borg serve --restrict-to-path {{ pool }}/{{ item.host }}",restrict'
key_options: 'command="cd {{ pool }}/{{ item.host }};borg serve --umask=007 --restrict-to-path {{ pool }}/{{ item.host }}",restrict'
with_items: "{{ auth_users }}"
- name: Ensure permission on authorized_keys file
@ -57,6 +57,6 @@
path: "{{ pool }}/{{ item.host }}"
owner: "{{ user }}"
group: "{{ group }}"
mode: 0700
mode: 0770
state: directory
with_items: "{{ auth_users }}"