diff options
Diffstat (limited to 'hst/fsoverlay.go')
| -rw-r--r-- | hst/fsoverlay.go | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/hst/fsoverlay.go b/hst/fsoverlay.go index de4e14dd..72df1deb 100644 --- a/hst/fsoverlay.go +++ b/hst/fsoverlay.go @@ -19,9 +19,11 @@ type FSOverlay struct { // Any filesystem, does not need to be on a writable filesystem, must not be nil. Lower []*check.Absolute `json:"lower"` - // The upperdir is normally on a writable filesystem, leave as nil to mount Lower readonly. + // The upperdir is normally on a writable filesystem, leave as nil to mount + // Lower readonly. Upper *check.Absolute `json:"upper,omitempty"` - // The workdir needs to be an empty directory on the same filesystem as Upper, must not be nil if Upper is populated. + // The workdir needs to be an empty directory on the same filesystem as + // Upper, must not be nil if Upper is populated. Work *check.Absolute `json:"work,omitempty"` } |
