diff options
Diffstat (limited to 'hst/fslink.go')
| -rw-r--r-- | hst/fslink.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/hst/fslink.go b/hst/fslink.go index 473506e6..2a1e3795 100644 --- a/hst/fslink.go +++ b/hst/fslink.go @@ -14,11 +14,11 @@ const FilesystemLink = "link" // FSLink represents a symlink in the container filesystem. type FSLink struct { - // link path in container + // Pathname in the container mount namespace. Target *check.Absolute `json:"dst"` - // linkname the symlink points to + // Arbitrary linkname value store in the symlink. Linkname string `json:"linkname"` - // whether to dereference linkname before creating the link + // Whether to treat Linkname as an absolute pathname and dereference before creating the link. Dereference bool `json:"dereference,omitempty"` } |
