Skip to content

Commit

Permalink
fix: fix struct, path is not necessary
Browse files Browse the repository at this point in the history
  • Loading branch information
yasminvalim committed Aug 30, 2023
1 parent 586a029 commit 946531f
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions config/fcos/v1_6_exp/schema.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -54,5 +54,4 @@ type GrubUser struct {
type Selinux struct {
State *string `yaml:"state"`
Mode *string `yaml:"mode"`
Path *string `yaml:"path"`
}

0 comments on commit 946531f

Please sign in to comment.