penguins-eggs 10.0.49 → 10.0.52

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (142) hide show
  1. package/.oclif.manifest.json +1 -1
  2. package/README.md +29 -29
  3. package/addons/eggs/theme/livecd/isolinux.main.simple.cfg +25 -11
  4. package/conf/distros/aldos/calamares/modules/bootloader.yml +85 -0
  5. package/conf/distros/aldos/calamares/modules/displaymanager.yml +22 -0
  6. package/conf/distros/aldos/calamares/modules/finished.yml +5 -0
  7. package/conf/distros/aldos/calamares/modules/fstab.yml +12 -0
  8. package/conf/distros/aldos/calamares/modules/locale.yml +97 -0
  9. package/conf/distros/aldos/calamares/modules/luksopenswaphookcfg.yml +5 -0
  10. package/conf/distros/aldos/calamares/modules/machineid.yml +17 -0
  11. package/conf/distros/aldos/calamares/modules/mount.yml +56 -0
  12. package/conf/distros/aldos/calamares/modules/packages.yml +6 -0
  13. package/conf/distros/aldos/calamares/modules/partition.yml +242 -0
  14. package/conf/distros/aldos/calamares/modules/removeuser.yml +15 -0
  15. package/conf/distros/aldos/calamares/modules/unpackfs.yml +6 -0
  16. package/conf/distros/aldos/calamares/modules/users.yml +19 -0
  17. package/conf/distros/aldos/calamares/modules/welcome.yml +19 -0
  18. package/conf/distros/aldos/calamares/settings.yml +124 -0
  19. package/conf/distros/fedora/calamares/modules/bootloader.conf +85 -0
  20. package/conf/distros/fedora/calamares/modules/bootloader.yml +5 -5
  21. package/conf/distros/fedora/calamares/modules/displaymanager.yml +1 -1
  22. package/conf/distros/fedora/calamares/modules/packages.yml +2 -2
  23. package/conf/distros/fedora/calamares/modules/partition.yml +1 -1
  24. package/conf/distros/fedora/calamares/settings.yml +4 -10
  25. package/conf/distros/openmamba/calamares/modules/bootloader.yml +83 -0
  26. package/conf/distros/openmamba/calamares/modules/displaymanager.yml +22 -0
  27. package/conf/distros/openmamba/calamares/modules/finished.yml +47 -0
  28. package/conf/distros/openmamba/calamares/modules/fstab.yml +37 -0
  29. package/conf/distros/openmamba/calamares/modules/grubcfg.yml +51 -0
  30. package/conf/distros/openmamba/calamares/modules/keyboard.yml +33 -0
  31. package/conf/distros/openmamba/calamares/modules/locale.yml +131 -0
  32. package/conf/distros/openmamba/calamares/modules/luksopenswaphookcfg.yml +7 -0
  33. package/conf/distros/openmamba/calamares/modules/machineid.yml +56 -0
  34. package/conf/distros/openmamba/calamares/modules/mount.yml +121 -0
  35. package/conf/distros/openmamba/calamares/modules/openrcdmcryptcfg.yml +5 -0
  36. package/conf/distros/openmamba/calamares/modules/packages.yml +6 -0
  37. package/conf/distros/openmamba/calamares/modules/partition.yml +318 -0
  38. package/conf/distros/openmamba/calamares/modules/removeuser.yml +13 -0
  39. package/conf/distros/openmamba/calamares/modules/services-systemd.yml +54 -0
  40. package/conf/distros/openmamba/calamares/modules/umount.yml +14 -0
  41. package/conf/distros/openmamba/calamares/modules/unpackfs.yml +93 -0
  42. package/conf/distros/openmamba/calamares/modules/users.yml +272 -0
  43. package/conf/distros/openmamba/calamares/modules/welcome.yml +138 -0
  44. package/conf/distros/openmamba/calamares/settings.yml +228 -0
  45. package/conf/distros/opensuse/calamares/modules/bootloader.conf +86 -0
  46. package/conf/distros/opensuse/calamares/modules/bootloader.yml +5 -5
  47. package/conf/distros/opensuse/calamares/modules/displaymanager.yml +1 -1
  48. package/conf/distros/opensuse/calamares/modules/finished.yml +1 -1
  49. package/conf/distros/opensuse/calamares/modules/fstab.yml +1 -1
  50. package/conf/distros/opensuse/calamares/modules/locale.yml +1 -0
  51. package/conf/distros/opensuse/calamares/modules/luksopenswaphookcfg.yml +1 -1
  52. package/conf/distros/opensuse/calamares/modules/machineid.yml +1 -1
  53. package/conf/distros/opensuse/calamares/modules/mount.yml +1 -1
  54. package/conf/distros/opensuse/calamares/modules/packages.yml +2 -2
  55. package/conf/distros/opensuse/calamares/modules/partition.yml +1 -1
  56. package/conf/distros/opensuse/calamares/modules/removeuser.yml +1 -1
  57. package/conf/distros/opensuse/calamares/settings.yml +4 -10
  58. package/dist/classes/bleach.js +21 -35
  59. package/dist/classes/distro.js +204 -176
  60. package/dist/classes/diversions.d.ts +38 -0
  61. package/dist/classes/diversions.js +107 -0
  62. package/dist/classes/incubation/branding.js +6 -10
  63. package/dist/classes/incubation/fisherman.d.ts +2 -2
  64. package/dist/classes/incubation/fisherman.js +2 -35
  65. package/dist/classes/incubation/incubator.d/openmamba.d.ts +32 -0
  66. package/dist/classes/incubation/incubator.d/openmamba.js +81 -0
  67. package/dist/classes/incubation/incubator.d/opensuse.d.ts +32 -0
  68. package/dist/classes/incubation/incubator.d/opensuse.js +81 -0
  69. package/dist/classes/incubation/{distros → incubator.d}/rolling.js +1 -3
  70. package/dist/classes/incubation/incubator.d.ts +3 -3
  71. package/dist/classes/incubation/incubator.js +118 -119
  72. package/dist/classes/incubation/installer.js +5 -12
  73. package/dist/classes/ovary.d.ts +1 -6
  74. package/dist/classes/ovary.js +26 -68
  75. package/dist/classes/pacman.d/aldos.d.ts +47 -0
  76. package/dist/classes/pacman.d/aldos.js +93 -0
  77. package/dist/classes/pacman.d/openmamba.d.ts +47 -0
  78. package/dist/classes/pacman.d/openmamba.js +93 -0
  79. package/dist/classes/pacman.d.ts +0 -5
  80. package/dist/classes/pacman.js +211 -192
  81. package/dist/classes/tailor.js +2 -0
  82. package/dist/classes/utils.js +15 -1
  83. package/dist/classes/xdg.js +9 -1
  84. package/dist/krill/modules/bootloader.js +59 -26
  85. package/dist/krill/modules/machine-id.js +8 -11
  86. package/dist/krill/sequence.js +1 -5
  87. package/manpages/doc/man/eggs.1.gz +0 -0
  88. package/manpages/doc/man/eggs.html +4 -604
  89. package/package.json +3 -3
  90. package/conf/distros/alpine/calamares/calamares-modules/bootloader-config/bootloader-config.sh +0 -40
  91. package/conf/distros/alpine/calamares/calamares-modules/bootloader-config/module.yml +0 -9
  92. package/conf/distros/alpine/calamares/calamares-modules/cleanup/cleanup.sh +0 -13
  93. package/conf/distros/alpine/calamares/calamares-modules/cleanup/module.yml +0 -9
  94. package/conf/distros/alpine/calamares/calamares-modules/dpkg-unsafe-io/dpkg-unsafe-io.sh +0 -13
  95. package/conf/distros/alpine/calamares/calamares-modules/dpkg-unsafe-io/module.yml +0 -6
  96. package/conf/distros/alpine/calamares/calamares-modules/dpkg-unsafe-io-undo/module.yml +0 -6
  97. package/conf/distros/alpine/calamares/calamares-modules/sources-yolk/module.yml +0 -8
  98. package/conf/distros/alpine/calamares/calamares-modules/sources-yolk/sources-yolk.sh +0 -50
  99. package/conf/distros/alpine/calamares/calamares-modules/sources-yolk-undo/module.yml +0 -8
  100. package/conf/distros/fedora/calamares/calamares-modules/bootloader-config/bootloader-config.sh +0 -40
  101. package/conf/distros/fedora/calamares/calamares-modules/bootloader-config/module.yml +0 -9
  102. package/conf/distros/fedora/calamares/calamares-modules/cleanup/cleanup.sh +0 -13
  103. package/conf/distros/fedora/calamares/calamares-modules/cleanup/module.yml +0 -9
  104. package/conf/distros/fedora/calamares/calamares-modules/dpkg-unsafe-io/dpkg-unsafe-io.sh +0 -13
  105. package/conf/distros/fedora/calamares/calamares-modules/dpkg-unsafe-io/module.yml +0 -6
  106. package/conf/distros/fedora/calamares/calamares-modules/dpkg-unsafe-io-undo/module.yml +0 -6
  107. package/conf/distros/fedora/calamares/calamares-modules/sources-yolk/module.yml +0 -8
  108. package/conf/distros/fedora/calamares/calamares-modules/sources-yolk/sources-yolk.sh +0 -50
  109. package/conf/distros/fedora/calamares/calamares-modules/sources-yolk-undo/module.yml +0 -8
  110. package/conf/distros/opensuse/calamares/calamares-modules/bootloader-config/bootloader-config.sh +0 -40
  111. package/conf/distros/opensuse/calamares/calamares-modules/bootloader-config/module.yml +0 -9
  112. package/conf/distros/opensuse/calamares/calamares-modules/cleanup/cleanup.sh +0 -13
  113. package/conf/distros/opensuse/calamares/calamares-modules/cleanup/module.yml +0 -9
  114. package/conf/distros/opensuse/calamares/calamares-modules/dpkg-unsafe-io/dpkg-unsafe-io.sh +0 -13
  115. package/conf/distros/opensuse/calamares/calamares-modules/dpkg-unsafe-io/module.yml +0 -6
  116. package/conf/distros/opensuse/calamares/calamares-modules/dpkg-unsafe-io-undo/module.yml +0 -6
  117. package/conf/distros/opensuse/calamares/calamares-modules/sources-yolk/module.yml +0 -8
  118. package/conf/distros/opensuse/calamares/calamares-modules/sources-yolk/sources-yolk.sh +0 -50
  119. package/conf/distros/opensuse/calamares/calamares-modules/sources-yolk-undo/module.yml +0 -8
  120. /package/dist/classes/incubation/{distros → incubator.d}/alpine.d.ts +0 -0
  121. /package/dist/classes/incubation/{distros → incubator.d}/alpine.js +0 -0
  122. /package/dist/classes/incubation/{distros → incubator.d}/bionic.d.ts +0 -0
  123. /package/dist/classes/incubation/{distros → incubator.d}/bionic.js +0 -0
  124. /package/dist/classes/incubation/{distros → incubator.d}/buster.d.ts +0 -0
  125. /package/dist/classes/incubation/{distros → incubator.d}/buster.js +0 -0
  126. /package/dist/classes/incubation/{distros → incubator.d}/jessie.d.ts +0 -0
  127. /package/dist/classes/incubation/{distros → incubator.d}/jessie.js +0 -0
  128. /package/dist/classes/incubation/{distros → incubator.d}/noble.d.ts +0 -0
  129. /package/dist/classes/incubation/{distros → incubator.d}/noble.js +0 -0
  130. /package/dist/classes/incubation/{distros → incubator.d}/rolling.d.ts +0 -0
  131. /package/dist/classes/{families → pacman.d}/alpine.d.ts +0 -0
  132. /package/dist/classes/{families → pacman.d}/alpine.js +0 -0
  133. /package/dist/classes/{families → pacman.d}/archlinux.d.ts +0 -0
  134. /package/dist/classes/{families → pacman.d}/archlinux.js +0 -0
  135. /package/dist/classes/{families → pacman.d}/debian.d.ts +0 -0
  136. /package/dist/classes/{families → pacman.d}/debian.js +0 -0
  137. /package/dist/classes/{families → pacman.d}/fedora.d.ts +0 -0
  138. /package/dist/classes/{families → pacman.d}/fedora.js +0 -0
  139. /package/dist/classes/{families → pacman.d}/opensuse.d.ts +0 -0
  140. /package/dist/classes/{families → pacman.d}/opensuse.js +0 -0
  141. /package/dist/classes/{families → pacman.d}/voidlinux.d.ts +0 -0
  142. /package/dist/classes/{families → pacman.d}/voidlinux.js +0 -0
@@ -0,0 +1,242 @@
1
+ # Fedora
2
+ # partition.yaml
3
+ ---
4
+ # This setting specifies the mount point of the EFI system partition. Some
5
+ # distributions (Fedora, Debian, Manjaro, etc.) use /boot/efi, others (KaOS,
6
+ # etc.) use just /boot.
7
+ efiSystemPartition: "/boot/efi"
8
+
9
+ # This optional setting specifies the size of the EFI system partition.
10
+ # If nothing is specified, the default size of 300MiB will be used.
11
+ # efiSystemPartitionSize: 300M
12
+
13
+ # In autogenerated partitioning, allow the user to select a swap size?
14
+ # If there is exactly one choice, no UI is presented, and the user
15
+ # cannot make a choice -- this setting is used. If there is more than
16
+ # one choice, a UI is presented.
17
+ #
18
+ # Legacy settings *neverCreateSwap* and *ensureSuspendToDisk* correspond
19
+ # to values of *userSwapChoices* as follows:
20
+ # - *neverCreateSwap* is true, means [none]
21
+ # - *neverCreateSwap* is false, *ensureSuspendToDisk* is false, [small]
22
+ # - *neverCreateSwap* is false, *ensureSuspendToDisk* is true, [suspend]
23
+ #
24
+ # Autogenerated swap sizes are as follows:
25
+ # - *suspend*: Swap is always at least total memory size,
26
+ # and up to 4GiB RAM follows the rule-of-thumb 2 * memory;
27
+ # from 4GiB to 8 GiB it stays steady at 8GiB, and over 8 GiB memory
28
+ # swap is the size of main memory.
29
+ # - *small*: Follows the rules above, but Swap is at
30
+ # most 8GiB, and no more than 10% of available disk.
31
+ # In both cases, a fudge factor (usually 10% extra) is applied so that there
32
+ # is some space for administrative overhead (e.g. 8 GiB swap will allocate
33
+ # 8.8GiB on disk in the end).
34
+ #
35
+ # If *file* is enabled here, make sure to have the *fstab* module
36
+ # as well (later in the exec phase) so that the swap file is
37
+ # actually created.
38
+ userSwapChoices:
39
+ - none # Create no swap, use no swap
40
+ - small # Up to 4GB
41
+ - suspend # At least main memory size
42
+ # - reuse # Re-use existing swap, but don't create any (unsupported right now)
43
+ - file # To swap file instead of partition
44
+
45
+ # This optional setting specifies the name of the swap partition (see
46
+ # PARTLABEL; gpt only; requires KPMCore >= 4.2.0).
47
+ # If nothing is specified, the partition name is left unset.
48
+ # swapPartitionName: swap
49
+
50
+ # LEGACY SETTINGS (these will generate a warning)
51
+ # ensureSuspendToDisk: true
52
+ # neverCreateSwap: false
53
+
54
+ # Correctly draw nested (e.g. logical) partitions as such.
55
+ drawNestedPartitions: false
56
+
57
+ # Show/hide partition labels on manual partitioning page.
58
+ alwaysShowPartitionLabels: true
59
+
60
+ # Allow manual partitioning.
61
+ #
62
+ # When set to false, this option hides the "Manual partitioning" button,
63
+ # limiting the user's choice to "Erase", "Replace" or "Alongside".
64
+ # This can be useful when using a custom partition layout we don't want
65
+ # the user to modify.
66
+ #
67
+ # If nothing is specified, manual partitioning is enabled.
68
+ #allowManualPartitioning: true
69
+
70
+ # Initial selection on the Choice page
71
+ #
72
+ # There are four radio buttons (in principle: erase, replace, alongside, manual),
73
+ # and you can pick which of them, if any, is initially selected. For most
74
+ # installers, "none" is the right choice: it makes the user pick something specific,
75
+ # rather than accidentally being able to click past an important choice (in particular,
76
+ # "erase" is a dangerous choice).
77
+ #
78
+ # The default is "none"
79
+ #
80
+ initialPartitioningChoice: none
81
+ #
82
+ # Similarly, some of the installation choices may offer a choice of swap;
83
+ # the available choices depend on *userSwapChoices*, above, and this
84
+ # setting can be used to pick a specific one.
85
+ #
86
+ # The default is "none" (no swap) if that is one of the enabled options, otherwise
87
+ # one of the items from the options.
88
+ initialSwapChoice: none
89
+
90
+ # Default partition table type, used when a "erase" disk is made.
91
+ #
92
+ # When erasing a disk, a new partition table is created on disk.
93
+ # In other cases, e.g. Replace and Alongside, as well as when using
94
+ # manual partitioning, this partition table exists already on disk
95
+ # and it is left unmodified.
96
+ #
97
+ # Suggested values: gpt, msdos
98
+ # If nothing is specified, Calamares defaults to "gpt" if system is
99
+ # efi or "msdos".
100
+ #
101
+ # Names are case-sensitive and defined by KPMCore.
102
+ # defaultPartitionTableType: msdos
103
+
104
+ # Requirement for partition table type
105
+ #
106
+ # Restrict the installation on disks that match the type of partition
107
+ # tables that are specified.
108
+ #
109
+ # Possible values: msdos, gpt. Names are case-sensitive and defined by KPMCore.
110
+ #
111
+ # If nothing is specified, Calamares defaults to both "msdos" and "gpt".
112
+ #
113
+ # requiredPartitionTableType: gpt
114
+ # requiredPartitionTableType:
115
+ # - msdos
116
+ # - gpt
117
+
118
+ # Default filesystem type, used when a "new" partition is made.
119
+ #
120
+ # When replacing a partition, the existing filesystem inside the
121
+ # partition is retained. In other cases, e.g. Erase and Alongside,
122
+ # as well as when using manual partitioning and creating a new
123
+ # partition, this filesystem type is pre-selected. Note that
124
+ # editing a partition in manual-creation mode will not automatically
125
+ # change the filesystem type to this default value -- it is not
126
+ # creating a new partition.
127
+ #
128
+ # Suggested values: ext2, ext3, ext4, reiser, xfs, jfs, btrfs
129
+ # If nothing is specified, Calamares defaults to "ext4".
130
+ #
131
+ # Names are case-sensitive and defined by KPMCore.
132
+ defaultFileSystemType: "ext4"
133
+
134
+ # Selectable filesystem type, used when "erase" is done.
135
+ #
136
+ # When erasing the disk, the *defaultFileSystemType* is used (see
137
+ # above), but it is also possible to give users a choice:
138
+ # list suitable filesystems here. A drop-down is provided
139
+ # to pick which is the filesystems will be used.
140
+ #
141
+ # The value *defaultFileSystemType* is added to this list (with a warning)
142
+ # if not present; the default pick is the *defaultFileSystemType*.
143
+ #
144
+ # If not specified at all, uses *defaultFileSystemType* without a
145
+ # warning (this matches traditional no-choice-available behavior best).
146
+ availableFileSystemTypes: ["ext4"]
147
+
148
+ # Show/hide LUKS related functionality in automated partitioning modes.
149
+ # Disable this if you choose not to deploy early unlocking support in GRUB2
150
+ # and/or your distribution's initramfs solution.
151
+ #
152
+ # BIG FAT WARNING:
153
+ #
154
+ # This option is unsupported, as it cuts out a crucial security feature.
155
+ # Disabling LUKS and shipping Calamares without a correctly configured GRUB2
156
+ # and initramfs is considered suboptimal use of the Calamares software. The
157
+ # Calamares team will not provide user support for any potential issue that
158
+ # may arise as a consequence of setting this option to false.
159
+ # It is strongly recommended that system integrators put in the work to support
160
+ # LUKS unlocking support in GRUB2 and initramfs/dracut/mkinitcpio/etc.
161
+ # For more information on setting up GRUB2 for Calamares with LUKS, see
162
+ # https://github.com/calamares/calamares/wiki/Deploy-LUKS
163
+ #
164
+ # If nothing is specified, LUKS is enabled in automated modes.
165
+ #enableLuksAutomatedPartitioning: true
166
+
167
+ # Partition layout.
168
+ #
169
+ # This optional setting specifies a custom partition layout.
170
+ #
171
+ # If nothing is specified, the default partition layout is a single partition
172
+ # for root that uses 100% of the space and uses the filesystem defined by
173
+ # defaultFileSystemType.
174
+ #
175
+ # Note: the EFI system partition is prepend automatically to the layout if
176
+ # needed; the swap partition is appended to the layout if enabled (small of
177
+ # suspend).
178
+ #
179
+ # Otherwise, the partition layout is defined as follow:
180
+ #
181
+ # partitionLayout:
182
+ # - name: "rootfs"
183
+ # type: "4f68bce3-e8cd-4db1-96e7-fbcaf984b709"
184
+ # filesystem: "ext4"
185
+ # mountPoint: "/"
186
+ # size: 20%
187
+ # minSize: 500M
188
+ # maxSize: 10G
189
+ # attributes: 0xffff000000000003
190
+ # - name: "home"
191
+ # type = "933ac7e1-2eb4-4f13-b844-0e14e2aef915"
192
+ # filesystem: "ext4"
193
+ # mountPoint: "/home"
194
+ # size: 3G
195
+ # minSize: 1.5G
196
+ # features:
197
+ # 64bit: false
198
+ # casefold: true
199
+ # - name: "data"
200
+ # filesystem: "fat32"
201
+ # mountPoint: "/data"
202
+ # features:
203
+ # sector-size: 4096
204
+ # sectors-per-cluster: 128
205
+ # size: 100%
206
+ #
207
+ # There can be any number of partitions, each entry having the following attributes:
208
+ # - name: filesystem label
209
+ # and
210
+ # partition name (gpt only; since KPMCore 4.2.0)
211
+ # - uuid: partition uuid (optional parameter; gpt only; requires KPMCore >= 4.2.0)
212
+ # - type: partition type (optional parameter; gpt only; requires KPMCore >= 4.2.0)
213
+ # - attributes: partition attributes (optional parameter; gpt only; requires KPMCore >= 4.2.0)
214
+ # - filesystem: filesystem type (optional parameter)
215
+ # - if not set at all, treat as "unformatted"
216
+ # - if "unformatted", no filesystem will be created
217
+ # - if "unknown" (or an unknown FS name, like "elephant") then the
218
+ # default filesystem type, or the user's choice, will be applied instead
219
+ # of "unknown" (e.g. the user might pick ext4, or xfs).
220
+ # - mountPoint: partition mount point (optional parameter; not mounted if unset)
221
+ # - size: partition size in bytes (append 'K', 'M' or 'G' for KiB, MiB or GiB)
222
+ # or
223
+ # % of the available drive space if a '%' is appended to the value
224
+ # - minSize: minimum partition size (optional parameter)
225
+ # - maxSize: maximum partition size (optional parameter)
226
+ # - features: filesystem features (optional parameter; requires KPMCore >= 4.2.0)
227
+ # name: boolean or integer or string
228
+
229
+ # Checking for available storage
230
+ #
231
+ # This overlaps with the setting of the same name in the welcome module's
232
+ # requirements section. If nothing is set by the welcome module, this
233
+ # value is used instead. It is still a problem if there is no required
234
+ # size set at all, and the replace and resize options will not be offered
235
+ # if no required size is set.
236
+ #
237
+ # The value is in Gibibytes (GiB).
238
+ #
239
+ # BIG FAT WARNING: except for OEM-phase-0 use, you should be using
240
+ # the welcome module, **and** configure this value in
241
+ # `welcome.conf`, not here.
242
+ requiredStorage: 6.0
@@ -0,0 +1,15 @@
1
+ # Debian Buster
2
+ # removeuser
3
+ # SPDX-FileCopyrightText: no
4
+ # SPDX-License-Identifier: CC0-1.0
5
+ #
6
+ # Removes a single user (with userdel) from the system.
7
+ # This is typically used in OEM setups or if the live user
8
+ # spills into the target system.
9
+ #
10
+ # The module never fails; if userdel fails, this is logged
11
+ # but the module still reports success and installation / setup
12
+ # continues as normal.
13
+ ---
14
+ # Username in the target system to be removed.
15
+ username: node
@@ -0,0 +1,6 @@
1
+ # Debian/bookworm
2
+ ---
3
+ unpack:
4
+ - source: {{source}}
5
+ sourcefs: "squashfs"
6
+ destination: ""
@@ -0,0 +1,19 @@
1
+ # Debian/bookworm
2
+ ---
3
+ userGroup: users
4
+ defaultGroups:
5
+ - cdrom
6
+ - floppy
7
+ - sudo
8
+ - audio
9
+ - dip
10
+ - video
11
+ - plugdev
12
+ - netdev
13
+ - lpadmin
14
+ - scanner
15
+ - bluetooth
16
+ autologinGroup: autologin
17
+ sudoersGroup: sudo
18
+ setRootPassword: true
19
+ doReusePassword: false
@@ -0,0 +1,19 @@
1
+ # Debian/bookworm
2
+ # welcome
3
+ ---
4
+ showSupportUrl: true
5
+ showKnownIssuesUrl: true
6
+ showReleaseNotesUrl: true
7
+
8
+ requirements:
9
+ requiredStorage: 10
10
+ requiredRam: 1.0
11
+ check:
12
+ - storage
13
+ - ram
14
+ - power
15
+ - root
16
+ required:
17
+ - storage
18
+ - ram
19
+ - root
@@ -0,0 +1,124 @@
1
+ # Fedora
2
+ ---
3
+ # "local" is LIBDIR/calamares/modules with settings in SHARE/calamares/modules
4
+ modules-search: [ local, /usr/lib/calamares/modules ]
5
+
6
+ # If this is set to true, Calamares refers to itself as a "setup program"
7
+ # rather than an "installer". Defaults to the value of dont-chroot, but
8
+ # Calamares will complain if this is not explicitly set.
9
+ oem-setup: false
10
+
11
+ # If this is set to true, the "Cancel" button will be disabled entirely.
12
+ # The button is also hidden from view.
13
+ #
14
+ # This can be useful if when e.g. Calamares is used as a post-install
15
+ # configuration tool and you require the user to go through all the
16
+ # configuration steps.
17
+ #
18
+ # Default is false, but Calamares will complain if this is not explicitly set.
19
+ #
20
+ # YAML: boolean.
21
+ disable-cancel: false
22
+
23
+ # If this is set to true, the "Cancel" button will be disabled once
24
+ # you start the 'Installation', meaning there won't be a way to cancel
25
+ # the Installation until it has finished or installation has failed.
26
+ #
27
+ # Default is false, but Calamares will complain if this is not explicitly set.
28
+ #
29
+ # YAML: boolean.
30
+ disable-cancel-during-exec: false
31
+
32
+ # If this is set to true, then once the end of the sequence has
33
+ # been reached, the quit (done) button is clicked automatically
34
+ # and Calamares will close. Default is false: the user will see
35
+ # that the end of installation has been reached, and that things are ok.
36
+ #
37
+ #
38
+ quit-at-end: false
39
+
40
+ instances:
41
+ - id: cleanup
42
+ module: shellprocess
43
+ config: shellprocess_cleanup.conf
44
+
45
+ sequence:
46
+ # Phase 1 - prepare.
47
+ # View modules are shown as UI pages, jobs from job modules
48
+ # are executed immediately in the background.
49
+ # Jobs should be executed sparingly (if at all) in this phase.
50
+ - show:
51
+ - welcome
52
+ - locale
53
+ - keyboard
54
+ - partition
55
+ {{createUsers}}users
56
+ - summary
57
+
58
+ # Phase 2 - install.
59
+ # View modules are not shown. Only the view modules shown
60
+ # in the previous phase are allowed, their names should be
61
+ # added here as placeholders to specify the order in which
62
+ # view module jobs should be enqueued. Job modules are
63
+ # also allowed.
64
+ - exec:
65
+ - partition
66
+ - mount
67
+ - unpackfs
68
+ {{hasSystemd}}machineid
69
+ - fstab
70
+ - locale
71
+ - keyboard
72
+ - localecfg
73
+ - luksbootkeyfile
74
+ - dracutlukscfg
75
+ {{createUsers}}users
76
+ {{hasDisplaymanager}}displaymanager
77
+ - networkcfg
78
+ - hwclock
79
+ {{hasSystemd}}services-systemd
80
+ - dracut
81
+ - grubcfg
82
+ - bootloader
83
+ - packages
84
+ - removeuser
85
+ - cleanup
86
+ - umount
87
+
88
+ # Phase 3 - postinstall.
89
+ # View modules are shown as UI pages, jobs from job modules are
90
+ # executed immediately in the background.
91
+ # Jobs should be executed sparingly (if at all) in this phase.
92
+ - show:
93
+ - finished
94
+
95
+ # A branding component is a directory, either in
96
+ # SHARE/calamares/branding or in /etc/calamares/branding
97
+ # (the latter takes precedence). The directory must contain a
98
+ # YAML file branding.desc which may reference additional resources
99
+ # (such as images) as paths relative to the current directory.
100
+ # Only the name of the branding component (directory) should be
101
+ # specified here, Calamares then takes care of finding it and
102
+ # loading the contents.
103
+ branding: {{branding}}
104
+
105
+ # If this is set to true, Calamares will show an "Are you sure?" prompt right
106
+ # before each execution phase, i.e. at points of no return. If this is set to
107
+ # false, no prompt is shown. Default is false.
108
+ #
109
+ # YAML: boolean.
110
+ prompt-install: false
111
+
112
+ # If this is set to true, Calamares will execute all target environment
113
+ # commands in the current environment, without chroot. This setting should
114
+ # only be used when setting up Calamares as a post-install configuration tool,
115
+ # as opposed to a full operating system installer.
116
+ #
117
+ # Some official Calamares modules are not expected to function with this
118
+ # setting. (e.g. partitioning seems like a bad idea, since that is expected to
119
+ # have been done already)
120
+ #
121
+ # Default is false (for a normal installer).
122
+ #
123
+ # YAML: boolean.
124
+ dont-chroot: false
@@ -0,0 +1,85 @@
1
+ # SPDX-FileCopyrightText: no
2
+ # SPDX-License-Identifier: CC0-1.0
3
+ #
4
+ # Bootloader configuration. The bootloader is installed to allow
5
+ # the system to start (and pick one of the installed operating
6
+ # systems to run).
7
+ #
8
+ # Take note that Debian-derivatives that use unmodified GRUB EFI packages
9
+ # should specifically set *efiBootloaderId* to "debian" because that is
10
+ # hard-coded in `grubx64.efi`.
11
+ ---
12
+ # A variable from global storage which overrides the value of efiBootLoader
13
+ #efiBootLoaderVar: "packagechooser_bootloader"
14
+
15
+ # Define which bootloader you want to use for EFI installations
16
+ # Possible options are 'grub', 'sb-shim', 'refind` and 'systemd-boot'.
17
+ efiBootLoader: "sb-shim"
18
+
19
+ # systemd-boot configuration files settings
20
+
21
+ # kernelSearchPath is the path relative to the root of the install to search for kernels
22
+ # A kernel is identified by finding files which match regular expression, kernelPattern
23
+ kernelSearchPath: "/usr/lib/modules"
24
+ kernelPattern: "^vmlinuz.*"
25
+
26
+ # loaderEntries is an array of options to add to loader.conf for systemd-boot
27
+ # please note that the "default" option is added programmatically
28
+ loaderEntries:
29
+ - "timeout 5"
30
+ - "console-mode keep"
31
+
32
+ # systemd-boot and refind support custom kernel params
33
+ kernelParams: [ "quiet" ]
34
+
35
+ # A list of kernel names that refind should accept as kernels
36
+ #refindKernelList: [ "linux","linux-lts","linux-zen","linux-hardened" ]
37
+
38
+ # GRUB 2 binary names and boot directory
39
+ # Some distributions (e.g. Fedora) use grub2-* (resp. /boot/grub2/) names.
40
+ # These names are also used when using sb-shim, since that needs some
41
+ # GRUB functionality (notably grub-probe) to work. As needed, you may use
42
+ # complete paths like `/usr/bin/efibootmgr` for the executables.
43
+ #
44
+ grubInstall: "grub2-install"
45
+ grubMkconfig: "grub2-mkconfig"
46
+ grubCfg: "/boot/grub2/grub.cfg"
47
+ grubProbe: "grub2-probe"
48
+ efiBootMgr: "efibootmgr"
49
+
50
+ # Optionally set the bootloader ID to use for EFI. This is passed to
51
+ # grub-install --bootloader-id.
52
+ #
53
+ # If not set here, the value from bootloaderEntryName from branding.desc
54
+ # is used, with problematic characters (space and slash) replaced.
55
+ #
56
+ # The ID is also used as a directory name within the EFI environment,
57
+ # and the bootloader is copied from /boot/efi/EFI/<dirname>/ . When
58
+ # setting the option here, keep in mind that the name is sanitized
59
+ # (problematic characters, see above, are replaced).
60
+ #
61
+ # There are some special words possible at the end of *efiBootloaderId*:
62
+ # ${SERIAL} can be used to obtain a uniquely-numbered suffix
63
+ # that is added to the Id (yielding, e.g., `dirname1` or `dirname72`)
64
+ # ${RANDOM} can be used to obtain a unique 4-digit hex suffix
65
+ # ${PHRASE} can be used to obtain a unique 1-to-3-word suffix
66
+ # from a dictionary of space-themed words
67
+ # These words must be at the **end** of the *efiBootloaderId* value.
68
+ # There must also be at most one of them. If there is none, no suffix-
69
+ # processing is done and the *efiBootloaderId* is used unchanged.
70
+ #
71
+ # NOTE: Debian derivatives that use the unmodified Debian GRUB EFI
72
+ # packages may need to set this to "debian" because that is
73
+ # hard-coded in `grubx64.efi`.
74
+ #
75
+ # PACKAGER NOTE: If you really want to change this value, you will also have to
76
+ # change the hardcoded directory name in the grub2(-efi) package.
77
+ efiBootloaderId: "fedora"
78
+
79
+ # Optionally install a copy of the GRUB EFI bootloader as the EFI
80
+ # fallback loader (either bootia32.efi or bootx64.efi depending on
81
+ # the system). This may be needed on certain systems (Intel DH87MC
82
+ # seems to be the only one). If you set this to false, take care
83
+ # to add another module to optionally install the fallback on those
84
+ # boards that need it.
85
+ installEFIFallback: true
@@ -1,4 +1,4 @@
1
- # Debian bookworm
1
+ # Fedora
2
2
  # Bootloader configuration. The bootloader is installed to allow
3
3
  # the system to start (and pick one of the installed operating
4
4
  # systems to run).
@@ -27,10 +27,10 @@ timeout: "10"
27
27
  # GRUB functionality (notably grub-probe) to work. As needed, you may use
28
28
  # complete paths like `/usr/bin/efibootmgr` for the executables.
29
29
  #
30
- grubInstall: "grub-install"
31
- grubMkconfig: "grub-mkconfig"
30
+ grubInstall: "grub2-install"
31
+ grubMkconfig: "grub2-mkconfig"
32
32
  grubCfg: "/boot/grub/grub.cfg"
33
- grubProbe: "grub-probe"
33
+ grubProbe: "grub2-probe"
34
34
  efiBootMgr: "efibootmgr"
35
35
 
36
36
  # Optionally set the bootloader ID to use for EFI. This is passed to
@@ -45,7 +45,7 @@ efiBootMgr: "efibootmgr"
45
45
  # (problematic characters, see above, are replaced).
46
46
  #
47
47
  # efiBootloaderId: "dirname"
48
- efiBootloaderId: "Debian"
48
+ efiBootloaderId: "fedora"
49
49
 
50
50
  # Optionally install a copy of the GRUB EFI bootloader as the EFI
51
51
  # fallback loader (either bootia32.efi or bootx64.efi depending on
@@ -1,4 +1,4 @@
1
- # Debian/bookworm
1
+ # Fedora
2
2
  # Configure one or more display managers (e.g. SDDM)
3
3
  # with a "best effort" approach.
4
4
  ---
@@ -1,6 +1,6 @@
1
- # Debian/Buster et others
1
+ # Fedora
2
2
  # packages
3
3
  ---
4
- backend: apt
4
+ backend: dnf
5
5
 
6
6
  {{operations}}
@@ -1,4 +1,4 @@
1
- # Debian/Buster et others
1
+ # Fedora
2
2
  # partition.yaml
3
3
  ---
4
4
  # This setting specifies the mount point of the EFI system partition. Some
@@ -1,4 +1,4 @@
1
- # Debian/bookworm
1
+ # Fedora
2
2
  ---
3
3
  # "local" is LIBDIR/calamares/modules with settings in SHARE/calamares/modules
4
4
  modules-search: [ local, /usr/lib/calamares/modules ]
@@ -65,29 +65,23 @@ sequence:
65
65
  - partition
66
66
  - mount
67
67
  - unpackfs
68
- - dpkg-unsafe-io
69
- - sources-yolk
70
68
  {{hasSystemd}}machineid
71
69
  - fstab
72
70
  - locale
73
71
  - keyboard
74
72
  - localecfg
73
+ - luksbootkeyfile
74
+ - dracutlukscfg
75
75
  {{createUsers}}users
76
76
  {{hasDisplaymanager}}displaymanager
77
77
  - networkcfg
78
78
  - hwclock
79
79
  {{hasSystemd}}services-systemd
80
- - bootloader-config
80
+ - dracut
81
81
  - grubcfg
82
82
  - bootloader
83
83
  - packages
84
- - luksbootkeyfile
85
- - plymouthcfg
86
- - initramfscfg
87
- - initramfs
88
- - dpkg-unsafe-io-undo
89
84
  - removeuser
90
- - sources-yolk-undo
91
85
  - cleanup
92
86
  - umount
93
87