We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5efc3f commit 0daf8faCopy full SHA for 0daf8fa
mantle/platform/qemu.go
@@ -1626,6 +1626,8 @@ func createVirtiofsCmd(directory, socketPath string) exec.Cmd {
1626
// We don't need seccomp filtering; we trust our workloads. This incidentally
1627
// works around issues like https://gitlab.com/virtio-fs/virtiofsd/-/merge_requests/200.
1628
args = append(args, "--seccomp=none")
1629
+ // OSTree composes use xattrs
1630
+ args = append(args, "--xattr")
1631
cmd := exec.Command("/usr/libexec/virtiofsd", args...)
1632
// This sets things up so that the `.` we passed in the arguments is the target directory
1633
cmd.Dir = directory
0 commit comments