Merge pull request #475 from michael-holzheu/seccomp_add_ppc_and_s390x
seccomp: Add ppc and s390x to specs-go/config.go
This commit is contained in:
commit
f0e14cd4b1
|
@ -420,6 +420,11 @@ const (
|
||||||
ArchMIPSEL Arch = "SCMP_ARCH_MIPSEL"
|
ArchMIPSEL Arch = "SCMP_ARCH_MIPSEL"
|
||||||
ArchMIPSEL64 Arch = "SCMP_ARCH_MIPSEL64"
|
ArchMIPSEL64 Arch = "SCMP_ARCH_MIPSEL64"
|
||||||
ArchMIPSEL64N32 Arch = "SCMP_ARCH_MIPSEL64N32"
|
ArchMIPSEL64N32 Arch = "SCMP_ARCH_MIPSEL64N32"
|
||||||
|
ArchPPC Arch = "SCMP_ARCH_PPC"
|
||||||
|
ArchPPC64 Arch = "SCMP_ARCH_PPC64"
|
||||||
|
ArchPPC64LE Arch = "SCMP_ARCH_PPC64LE"
|
||||||
|
ArchS390 Arch = "SCMP_ARCH_S390"
|
||||||
|
ArchS390X Arch = "SCMP_ARCH_S390X"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Action taken upon Seccomp rule match
|
// Action taken upon Seccomp rule match
|
||||||
|
|
Loading…
Reference in New Issue