summaryrefslogtreecommitdiff
path: root/types/bootentry.pp
diff options
context:
space:
mode:
Diffstat (limited to 'types/bootentry.pp')
-rw-r--r--types/bootentry.pp9
1 files changed, 9 insertions, 0 deletions
diff --git a/types/bootentry.pp b/types/bootentry.pp
new file mode 100644
index 0000000..38fc8b1
--- /dev/null
+++ b/types/bootentry.pp
@@ -0,0 +1,9 @@
+type Syslinux::Bootentry = Struct[{
+ 'label' => String,
+ 'type' => Enum['linux','com'],
+ # linux specific
+ 'extra_args' => Optional[String],
+ 'initrd' => Optional[String],
+ # com specific
+ 'com' => Optional[String],
+}]