diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-07-15 19:17:43 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-07-15 19:17:43 +0000 |
commit | 22cc435645568eb94edb4dcdb6f97c86247bed71 (patch) | |
tree | 53ab2cf41b1aa62c28e82b8c09dc9b50cc01435f /runsc/boot/config.go | |
parent | 607170858082259134ebd03005e9994ae7b5c088 (diff) | |
parent | 8939fae0af9dc8e1cdf2553339fee35b684fc828 (diff) |
Merge release-20200622.1-160-g8939fae0a (automated)
Diffstat (limited to 'runsc/boot/config.go')
-rw-r--r-- | runsc/boot/config.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/runsc/boot/config.go b/runsc/boot/config.go index bb01b8fb5..80da8b3e6 100644 --- a/runsc/boot/config.go +++ b/runsc/boot/config.go @@ -274,6 +274,9 @@ type Config struct { // Enables VFS2 (not plumbled through yet). VFS2 bool + + // Enables FUSE usage (not plumbled through yet). + FUSE bool } // ToFlags returns a slice of flags that correspond to the given Config. @@ -325,5 +328,9 @@ func (c *Config) ToFlags() []string { f = append(f, "--vfs2=true") } + if c.FUSE { + f = append(f, "--fuse=true") + } + return f } |