diff --git a/config/fcos/v1_6_exp/schema.go b/config/fcos/v1_6_exp/schema.go index f05a1964..6eb3ea31 100644 --- a/config/fcos/v1_6_exp/schema.go +++ b/config/fcos/v1_6_exp/schema.go @@ -22,13 +22,13 @@ type Config struct { base.Config `yaml:",inline"` BootDevice BootDevice `yaml:"boot_device"` Grub Grub `yaml:"grub"` + Selinux Selinux `yaml:"selinux"` } type BootDevice struct { - Layout *string `yaml:"layout"` - Luks BootDeviceLuks `yaml:"luks"` - Mirror BootDeviceMirror `yaml:"mirror"` - Selinux Selinux `yaml:"selinux"` + Layout *string `yaml:"layout"` + Luks BootDeviceLuks `yaml:"luks"` + Mirror BootDeviceMirror `yaml:"mirror"` } type BootDeviceLuks struct { @@ -54,5 +54,4 @@ type GrubUser struct { type Selinux struct { State *string `yaml:"state"` Mode *string `yaml:"mode"` - Path *string `yaml:"path"` }