diff --git a/internal/osbuild/selinux_stage.go b/internal/osbuild/selinux_stage.go index 80aa93b1f..1e75812d3 100644 --- a/internal/osbuild/selinux_stage.go +++ b/internal/osbuild/selinux_stage.go @@ -5,7 +5,8 @@ package osbuild // A file contexts configuration file is sepcified that describes // the filesystem labels to apply to the image. type SELinuxStageOptions struct { - FileContexts string `json:"file_contexts"` + FileContexts string `json:"file_contexts"` + Labels map[string]string `json:"labels,omitempty"` } func (SELinuxStageOptions) isStageOptions() {}