We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a1b18e commit 6fc2da9Copy full SHA for 6fc2da9
config/fcos/v1_6_exp/schema.go
@@ -19,9 +19,10 @@ import (
19
)
20
21
type Config struct {
22
- base.Config `yaml:",inline"`
23
- BootDevice BootDevice `yaml:"boot_device"`
24
- Grub Grub `yaml:"grub"`
+ base.Config `yaml:",inline"`
+ BootDevice BootDevice `yaml:"boot_device"`
+ Grub Grub `yaml:"grub"`
25
+ SelinuxModule SelinuxModule `yaml:"selinux_module"`
26
}
27
28
type BootDevice struct {
@@ -49,3 +50,8 @@ type GrubUser struct {
49
50
Name string `yaml:"name"`
51
PasswordHash *string `yaml:"password_hash"`
52
53
+
54
+type SelinuxModule struct {
55
+ Contents []base.Resource `yaml:"content"`
56
+ Path base.File `yaml:"path"`
57
+}
0 commit comments