Skip to content

Commit f955d90

Browse files
committed
Merge pull request #396 from mrunalp/fix_process_label
Fix remnants from SelinuxProcessLabel to SelinuxLabel rename
2 parents 6e08c69 + e87d7d2 commit f955d90

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

schema/schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,8 @@
132132
"id": "https://opencontainers.org/schema/bundle/process/linux/apparmorProfile",
133133
"type": "string"
134134
},
135-
"selinuxProcessLabel": {
136-
"id": "https://opencontainers.org/schema/bundle/process/linux/selinuxProcessLabel",
135+
"selinuxLabel": {
136+
"id": "https://opencontainers.org/schema/bundle/process/linux/selinuxLabel",
137137
"type": "string"
138138
},
139139
"noNewPrivileges": {

specs-go/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ type Process struct {
4949

5050
// ApparmorProfile specified the apparmor profile for the container. (this field is platform dependent)
5151
ApparmorProfile string `json:"apparmorProfile,omitempty" platform:"linux"`
52-
// SelinuxProcessLabel specifies the selinux context that the container process is run as. (this field is platform dependent)
52+
// SelinuxLabel specifies the selinux context that the container process is run as. (this field is platform dependent)
5353
SelinuxLabel string `json:"selinuxLabel,omitempty" platform:"linux"`
5454
}
5555

0 commit comments

Comments
 (0)