You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-2Lines changed: 4 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,16 +20,18 @@ disk_additional_disks:
20
20
fstype: ext4
21
21
mount_options: defaults
22
22
mount: /data
23
+
user: www-data
24
+
group: www-data
23
25
```
24
26
25
27
* `disk` is the device, you want to mount.
26
28
* `fstype` allows you to choose the filesystem to use with the new disk.
27
29
* `mount_options` allows you to specify custom mount options.
28
30
* `mount` is the directory where the new disk should be mounted.
31
+
* `user` sets owner of the mount directory (default: `root`).
32
+
* `group` sets group of the mount directory (default: `root`).
29
33
30
34
You can add:
31
-
* `disk_user` sets owner of the mount directory (default: root)
32
-
* `disk_group` sets group of the mount directory (default: root)
33
35
* `disk_package_use` is the required package manager module to use (yum, apt, etc). The default 'auto' will use existing facts or try to autodetect it.
34
36
35
37
The following filesystems are currently supported:
0 commit comments