From 75142d611ede46f8d5cc7d74fe1e4acffa3863af Mon Sep 17 00:00:00 2001 From: Yasmin Valim Date: Fri, 8 Sep 2023 17:49:15 -0300 Subject: [PATCH] fcos/v1_6_exp: Add SElinuxModule --- config/fcos/v1_6_exp/schema.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/config/fcos/v1_6_exp/schema.go b/config/fcos/v1_6_exp/schema.go index 140cd31a..700937ed 100644 --- a/config/fcos/v1_6_exp/schema.go +++ b/config/fcos/v1_6_exp/schema.go @@ -49,3 +49,8 @@ type GrubUser struct { Name string `yaml:"name"` PasswordHash *string `yaml:"password_hash"` } + +type SELinuxModule struct { + FileContent string `yaml:"file_content"` + Path string `yaml:"path"` +}