Skip to content

Commit

Permalink
specs-go/config: Fix 'SelinuxProcessLabel' -> 'SelinuxLabel'
Browse files Browse the repository at this point in the history
The label changed in 5a8a779 (Move process specific settings to
process, 2016-03-02, opencontainers#329) and 7bf06d5 (source and schema:
differentiate with examples, 2015-12-18, opencontainers#276) missed this instance
when rebasing around opencontainers#329.

Signed-off-by: W. Trevor King <wking@tremily.us>
  • Loading branch information
wking committed Mar 9, 2016
1 parent fae9a3e commit 59333dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion specs-go/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
Expand Down

0 comments on commit 59333dc

Please sign in to comment.