From 59333dcf45524351b05783b67895fbf49f7b19e2 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Wed, 9 Mar 2016 11:59:04 -0800 Subject: [PATCH] specs-go/config: Fix 'SelinuxProcessLabel' -> 'SelinuxLabel' The label changed in 5a8a779f (Move process specific settings to process, 2016-03-02, #329) and 7bf06d53 (source and schema: differentiate with examples, 2015-12-18, #276) missed this instance when rebasing around #329. Signed-off-by: W. Trevor King --- specs-go/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs-go/config.go b/specs-go/config.go index 89c7327f..816bc856 100644 --- a/specs-go/config.go +++ b/specs-go/config.go @@ -39,7 +39,7 @@ type Process struct { Capabilities []string `json:"capabilities,omitempty"` // ApparmorProfile specified the apparmor profile for the container. ApparmorProfile string `json:"apparmorProfile,omitempty"` - // SelinuxProcessLabel specifies the selinux context that the container process is run as. + // SelinuxLabel specifies the selinux context that the container process is run as. SelinuxLabel string `json:"selinuxLabel,omitempty"` // NoNewPrivileges controls whether additional privileges could be gained by processes in the container. NoNewPrivileges bool `json:"noNewPrivileges,omitempty"`