Skip to content
This repository has been archived by the owner on May 12, 2021. It is now read-only.

Commit

Permalink
Merge pull request #2900 from likebreath/disable_clh_seccomp
Browse files Browse the repository at this point in the history
clh: Disable the 'seccomp' option temporarily
  • Loading branch information
jcvenegas authored Aug 26, 2020
2 parents 60c41be + dfb8ed7 commit a1d993f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions virtcontainers/clh.go
Original file line number Diff line number Diff line change
Expand Up @@ -955,6 +955,12 @@ func (clh *cloudHypervisor) LaunchClh() (string, int, error) {
args = append(args, "-vv")
}

// Disable the 'seccomp' option in clh for now.
// In this way, we can separate the periodic failures caused
// by incomplete `seccomp` filters from other failures.
// We will bring it back after completing the `seccomp` filter.
args = append(args, "--seccomp", "false")

clh.Logger().WithField("path", clhPath).Info()
clh.Logger().WithField("args", strings.Join(args, " ")).Info()

Expand Down

0 comments on commit a1d993f

Please sign in to comment.