Skip to content

Commit 41acc36

Browse files
committed
fix(perms) use default unix directory permission
1 parent c220c0b commit 41acc36

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ disk_additional_disks:
4242
* `mount` is the directory where the new disk should be mounted.
4343
* `user` sets owner of the mount directory (default: `root`).
4444
* `group` sets group of the mount directory (default: `root`).
45-
* `mode` sets the mountpoint directory permissions (default: `0775`).
45+
* `mode` sets the mountpoint directory permissions (default: `0755`).
4646
* `disable_periodic_fsck` deactivates the periodic ext3/4 filesystem check for the new disk.
4747

4848
You can add:

tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
path: '{{ item.mount }}'
114114
owner: '{{ item.user | default("root") }}'
115115
group: '{{ item.group | default("root") }}'
116-
mode: '{{ item.mode | default("0775") }}'
116+
mode: '{{ item.mode | default("0755") }}'
117117
state: directory
118118
with_items: '{{ disk_additional_disks }}'
119119
tags: ['disk']

0 commit comments

Comments
 (0)