diff --git a/config/fcos/v1_6_exp/schema.go b/config/fcos/v1_6_exp/schema.go index 140cd31a..f318afa0 100644 --- a/config/fcos/v1_6_exp/schema.go +++ b/config/fcos/v1_6_exp/schema.go @@ -19,9 +19,10 @@ import ( ) type Config struct { - base.Config `yaml:",inline"` - BootDevice BootDevice `yaml:"boot_device"` - Grub Grub `yaml:"grub"` + base.Config `yaml:",inline"` + BootDevice BootDevice `yaml:"boot_device"` + Grub Grub `yaml:"grub"` + SelinuxModule SelinuxModule `yaml:"selinux_module"` } type BootDevice struct { @@ -49,3 +50,8 @@ type GrubUser struct { Name string `yaml:"name"` PasswordHash *string `yaml:"password_hash"` } + +type SelinuxModule struct { + Contents []base.Resource `yaml:"content"` + Path base.File `yaml:"path"` +}