From 497d14e4272f1604526cf4afd3a62a24df5c7aca Mon Sep 17 00:00:00 2001 From: Matthew Ellison Date: Mon, 22 May 2017 16:38:42 -0400 Subject: [PATCH] linux: Rewords Documentation for Owner/Group Param --- params_linux.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/params_linux.go b/params_linux.go index 8f69d0a..a0533f7 100644 --- a/params_linux.go +++ b/params_linux.go @@ -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 }