From ccb3d49edf8fd6c64c3755b5328a8c9750aca9f7 Mon Sep 17 00:00:00 2001 From: YASMIN VALIM Date: Thu, 31 Aug 2023 17:33:01 -0300 Subject: [PATCH] fix: changing type --- config/fcos/v1_6_exp/schema.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/fcos/v1_6_exp/schema.go b/config/fcos/v1_6_exp/schema.go index 6eb3ea31..cb6b3e45 100644 --- a/config/fcos/v1_6_exp/schema.go +++ b/config/fcos/v1_6_exp/schema.go @@ -52,6 +52,6 @@ type GrubUser struct { } type Selinux struct { - State *string `yaml:"state"` - Mode *string `yaml:"mode"` + State *bool `yaml:"state"` + Mode *bool `yaml:"mode"` }