We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 885cbbc commit 68490b0Copy full SHA for 68490b0
launcher/internal/container/sasm.go
@@ -31,6 +31,9 @@ func NewSasmContainer() (*LaunchableContainer, error) {
31
if runtime.GOOS == "darwin" {
32
c := exec.Command("xhost", "+localhost")
33
c.Run()
34
+ } else if runtime.GOOS == "linux" {
35
+ c := exec.Command("xhost", "SI:localuser:root")
36
+ c.Run()
37
}
38
})
39
0 commit comments