1
0
mirror of https://github.com/fumiama/water.git synced 2026-06-08 20:20:29 +08:00

linux: Rewords Documentation for Owner/Group Param

This commit is contained in:
Matthew Ellison
2017-05-22 16:38:42 -04:00
parent c59a2fb87d
commit 497d14e427

View File

@@ -16,11 +16,13 @@ type PlatformSpecificParams struct {
Persist bool
// ID of the user which will be granted ownership of the device.
// The default value of -1 specifies that any user may use the device.
// If set to a negative value, the owner value will not be changed.
// By default, Linux sets the owner to -1, which allows any user.
Owner int
// ID of the group which will be granted access to the device.
// The default value of -1 specifies that any group may use the device.
// If set to a negative value, the group value will not be changed.
// By default, Linux sets the group to -1, which allows any group.
Group int
}