penguins-eggs 9.6.23 → 9.8.1

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 (128) hide show
  1. package/.oclif.manifest.json +1458 -1
  2. package/README.md +1527 -201
  3. package/addons/eggs/theme/livecd/grub.main.cfg +4 -4
  4. package/addons/eggs/theme/livecd/isolinux.main.cfg +5 -5
  5. package/bin/dev.js +6 -0
  6. package/bin/run +0 -0
  7. package/bin/run.js +7 -0
  8. package/conf/derivatives.yaml +23 -3
  9. package/conf/distros/README.md +25 -0
  10. package/conf/distros/bionic/calamares/calamares-modules/sources-yolk/module.yml +8 -0
  11. package/conf/distros/bionic/calamares/calamares-modules/sources-yolk/sources-yolk.sh +82 -0
  12. package/conf/distros/bionic/calamares/modules/packages.yml +6 -0
  13. package/conf/distros/{rolling/calamares-32 → bionic/calamares}/modules/removeuser.yml +2 -3
  14. package/conf/distros/bionic/calamares/modules/unpackfs.yml +6 -0
  15. package/conf/distros/buster/calamares/calamares-modules/bootloader-config/bootloader-config.sh +3 -3
  16. package/conf/distros/buster/calamares/calamares-modules/sources-yolk/sources-yolk.sh +1 -1
  17. package/conf/distros/buster/calamares/modules/bootloader.yml +2 -1
  18. package/conf/distros/buster/calamares/modules/fstab.yml +1 -1
  19. package/conf/distros/buster/calamares/modules/mount.yml +2 -2
  20. package/conf/distros/focal/calamares/modules/after_bootloader_context.yml +10 -1
  21. package/conf/distros/focal/calamares/modules/before_bootloader_mkdirs_context.yml +4 -4
  22. package/conf/distros/focal/calamares/modules/fstab.yml +1 -1
  23. package/conf/distros/focal/calamares/modules/mount.yml +2 -2
  24. package/conf/distros/focal/calamares/modules/shellprocess_bug-LP#1829805.yml +1 -1
  25. package/conf/distros/focal/calamares/modules/shellprocess_logs.yml +1 -1
  26. package/conf/distros/stretch/krill/krill-modules/bootloader-config/bootloader-config.sh +28 -0
  27. package/conf/distros/stretch/krill/krill-modules/bootloader-config/module.yml +8 -0
  28. package/conf/distros/stretch/krill/krill-modules/remove-link/module.yml +9 -0
  29. package/conf/distros/stretch/krill/krill-modules/remove-link/remove-link.sh +5 -0
  30. package/conf/distros/stretch/krill/krill-modules/sources-yolk/module.yml +8 -0
  31. package/conf/distros/stretch/krill/krill-modules/sources-yolk/sources-yolk.sh +75 -0
  32. package/conf/distros/stretch/krill/krill-modules/sources-yolk-unmount/module.yml +8 -0
  33. package/conf/distros/stretch/krill/modules/partitions.yml +8 -0
  34. package/conf/distros/stretch/krill/modules/removeuser.yml +15 -0
  35. package/conf/distros/{rolling/calamares-32 → stretch/krill}/settings.yml +50 -11
  36. package/conf/eggs.yaml +2 -9
  37. package/conf/{exclude.list.homes → exclude.list.d/home.list} +6 -1
  38. package/conf/{exclude.list.template → exclude.list.d/master.list} +16 -26
  39. package/conf/{exclude.list.usr → exclude.list.d/usr.list} +2 -2
  40. package/conf/exclude.list.d/var.list +21 -0
  41. package/conf/tools.yaml +1 -3
  42. package/dist/classes/compressors.js +11 -13
  43. package/dist/classes/daddy.js +1 -3
  44. package/dist/classes/distro.js +23 -4
  45. package/dist/classes/families/archlinux.js +7 -9
  46. package/dist/classes/families/debian.js +1 -1
  47. package/dist/classes/families/fedora.js +1 -1
  48. package/dist/classes/families/suse.js +1 -1
  49. package/dist/classes/incubation/branding.js +9 -3
  50. package/dist/classes/incubation/distros/bionic.js +8 -3
  51. package/dist/classes/incubation/distros/buster.js +8 -3
  52. package/dist/classes/incubation/distros/focal.js +8 -3
  53. package/dist/classes/incubation/distros/jessie.js +6 -3
  54. package/dist/classes/incubation/distros/rolling.js +8 -4
  55. package/dist/classes/incubation/fisherman-helper/packages.js +5 -2
  56. package/dist/classes/incubation/fisherman.js +18 -3
  57. package/dist/classes/incubation/incubator.js +7 -2
  58. package/dist/classes/incubation/installer.js +3 -1
  59. package/dist/classes/initrd.js +5 -5
  60. package/dist/classes/keyboards.js +4 -4
  61. package/dist/classes/network.js +7 -7
  62. package/dist/classes/ovary.js +136 -176
  63. package/dist/classes/pacman.js +12 -14
  64. package/dist/classes/pve-live.js +1 -1
  65. package/dist/classes/pxe.js +10 -12
  66. package/dist/classes/settings.js +19 -18
  67. package/dist/classes/systemctl.js +1 -1
  68. package/dist/classes/tailor.js +6 -6
  69. package/dist/classes/tools.js +4 -6
  70. package/dist/classes/users.js +10 -0
  71. package/dist/classes/utils.js +30 -0
  72. package/dist/classes/xdg.js +21 -8
  73. package/dist/classes/yolk.js +3 -5
  74. package/dist/commands/adapt.js +8 -8
  75. package/dist/commands/analyze.js +9 -12
  76. package/dist/commands/calamares.js +20 -23
  77. package/dist/commands/config.js +13 -13
  78. package/dist/commands/cuckoo.js +7 -7
  79. package/dist/commands/dad.js +12 -12
  80. package/dist/commands/export/deb.js +20 -25
  81. package/dist/commands/export/iso.js +11 -11
  82. package/dist/commands/install.js +41 -37
  83. package/dist/commands/kill.js +12 -15
  84. package/dist/commands/mom.js +7 -7
  85. package/dist/commands/produce.js +71 -47
  86. package/dist/commands/status.js +8 -8
  87. package/dist/commands/syncfrom.js +34 -40
  88. package/dist/commands/syncto.js +142 -202
  89. package/dist/commands/tools/clean.js +9 -9
  90. package/dist/commands/tools/ppa.js +12 -12
  91. package/dist/commands/tools/skel.js +10 -10
  92. package/dist/commands/tools/stat.js +11 -11
  93. package/dist/commands/tools/yolk.js +9 -9
  94. package/dist/commands/update.js +8 -8
  95. package/dist/commands/wardrobe/get.js +13 -10
  96. package/dist/commands/wardrobe/list.js +15 -13
  97. package/dist/commands/wardrobe/show.js +16 -13
  98. package/dist/commands/wardrobe/wear.js +16 -14
  99. package/dist/components/summary.js +5 -2
  100. package/dist/interfaces/i-analyze.js +8 -10
  101. package/dist/interfaces/{i-filters.js → i-excludes.js} +0 -1
  102. package/dist/krill/krill-prepare.js +23 -11
  103. package/dist/krill/krill-sequence.js +72 -73
  104. package/dist/krill/modules/fstab.js +59 -32
  105. package/dist/krill/modules/mkfs.js +29 -16
  106. package/dist/krill/modules/network-cfg.js +22 -21
  107. package/dist/krill/modules/partition.js +3 -3
  108. package/dist/lib/dependencies.js +1 -0
  109. package/dist/lib/select_filesystem_type.js +6 -1
  110. package/manpages/doc/man/eggs.1.gz +0 -0
  111. package/manpages/doc/man/eggs.html +128 -74
  112. package/mkinitcpio/biglinux/live.conf +74 -0
  113. package/mkinitcpio/biglinux/mkinitcpio.conf +73 -0
  114. package/package.json +43 -41
  115. package/scripts/_eggs +17 -14
  116. package/scripts/eggs.bash +6 -6
  117. package/conf/distros/rolling/calamares-32/modules/displaymanager.yml +0 -23
  118. package/conf/distros/rolling/calamares-32/modules/finished.yml +0 -6
  119. package/conf/distros/rolling/calamares-32/modules/fstab.yml +0 -14
  120. package/conf/distros/rolling/calamares-32/modules/locale.yml +0 -11
  121. package/conf/distros/rolling/calamares-32/modules/mount.yml +0 -39
  122. package/conf/distros/rolling/calamares-32/modules/packages.yml +0 -11
  123. package/conf/distros/rolling/calamares-32/modules/partition.yml +0 -283
  124. package/conf/distros/rolling/calamares-32/modules/shellprocess_removelink.yml +0 -8
  125. package/conf/distros/rolling/calamares-32/modules/unpackfs.yml +0 -7
  126. package/conf/distros/rolling/calamares-32/modules/users.yml +0 -20
  127. package/conf/exclude.list.custom +0 -3
  128. package/manpages/doc/man/README.md +0 -0
@@ -1,283 +0,0 @@
1
- # manjaro
2
- # calamares-3.2
3
- # packages
4
- ---
5
- # SPDX-FileCopyrightText: no
6
- # SPDX-License-Identifier: CC0-1.0
7
- #
8
- # This setting specifies the mount point of the EFI system partition. Some
9
- # distributions (Fedora, Debian, Manjaro, etc.) use /boot/efi, others (KaOS,
10
- # etc.) use just /boot.
11
- #
12
- # Defaults to "/boot/efi", may be empty (but weird effects ensue)
13
- efiSystemPartition: "/boot/efi"
14
-
15
- # This optional setting specifies the size of the EFI system partition.
16
- # If nothing is specified, the default size of 300MiB will be used.
17
- #
18
- # This size applies both to automatic partitioning and the checks
19
- # during manual partitioning. A minimum of 32MiB is enforced,
20
- # 300MiB is the default, M is treated as MiB, and if you really want
21
- # one-million (10^6) bytes, use MB.
22
- #
23
- # efiSystemPartitionSize: 300M
24
-
25
- # This optional setting specifies the name of the EFI system partition (see
26
- # PARTLABEL; gpt only; requires KPMCore >= 4.2.0).
27
- # If nothing is specified, the partition name is left unset.
28
- # efiSystemPartitionName: EFI
29
-
30
- # In autogenerated partitioning, allow the user to select a swap size?
31
- # If there is exactly one choice, no UI is presented, and the user
32
- # cannot make a choice -- this setting is used. If there is more than
33
- # one choice, a UI is presented.
34
- #
35
- # Legacy settings *neverCreateSwap* and *ensureSuspendToDisk* correspond
36
- # to values of *userSwapChoices* as follows:
37
- # - *neverCreateSwap* is true, means [none]
38
- # - *neverCreateSwap* is false, *ensureSuspendToDisk* is false, [small]
39
- # - *neverCreateSwap* is false, *ensureSuspendToDisk* is true, [suspend]
40
- #
41
- # Autogenerated swap sizes are as follows:
42
- # - *suspend*: Swap is always at least total memory size,
43
- # and up to 4GiB RAM follows the rule-of-thumb 2 * memory;
44
- # from 4GiB to 8 GiB it stays steady at 8GiB, and over 8 GiB memory
45
- # swap is the size of main memory.
46
- # - *small*: Follows the rules above, but Swap is at
47
- # most 8GiB, and no more than 10% of available disk.
48
- # In both cases, a fudge factor (usually 10% extra) is applied so that there
49
- # is some space for administrative overhead (e.g. 8 GiB swap will allocate
50
- # 8.8GiB on disk in the end).
51
- #
52
- # If *file* is enabled here, make sure to have the *fstab* module
53
- # as well (later in the exec phase) so that the swap file is
54
- # actually created.
55
- userSwapChoices:
56
- - none # Create no swap, use no swap
57
- - small # Up to 4GB
58
- - suspend # At least main memory size
59
- # - reuse # Re-use existing swap, but don't create any (unsupported right now)
60
- - file # To swap file instead of partition
61
-
62
- # This optional setting specifies the name of the swap partition (see
63
- # PARTLABEL; gpt only; requires KPMCore >= 4.2.0).
64
- # If nothing is specified, the partition name is left unset.
65
- # swapPartitionName: swap
66
-
67
- # LEGACY SETTINGS (these will generate a warning)
68
- # ensureSuspendToDisk: true
69
- # neverCreateSwap: false
70
-
71
- # This setting specifies the LUKS generation (i.e LUKS1, LUKS2) used internally by
72
- # cryptsetup when creating an encrypted partition.
73
- #
74
- # This option is set to luks1 by default, as grub doesn't support LUKS2 + Argon2id
75
- # currently. On the other hand grub does support LUKS2 with PBKDF2 and could therefore be
76
- # also set to luks2. Also there are some patches for grub and Argon2.
77
- # See: https://aur.archlinux.org/packages/grub-improved-luks2-git
78
- #
79
- # Choices: luks1, luks2 (in addition, "luks" means "luks1")
80
- #
81
- # The default is luks1
82
- #
83
- luksGeneration: luks1
84
-
85
- # This setting determines if encryption should be allowed when using zfs. This
86
- # setting has no effect unless zfs support is provided.
87
- #
88
- # This setting is to handle the fact that some bootloaders(such as grub) do not
89
- # support zfs encryption.
90
- #
91
- # The default is true
92
- #
93
- # allowZfsEncryption: true
94
-
95
- # Correctly draw nested (e.g. logical) partitions as such.
96
- drawNestedPartitions: false
97
-
98
- # Show/hide partition labels on manual partitioning page.
99
- alwaysShowPartitionLabels: true
100
-
101
- # Allow manual partitioning.
102
- #
103
- # When set to false, this option hides the "Manual partitioning" button,
104
- # limiting the user's choice to "Erase", "Replace" or "Alongside".
105
- # This can be useful when using a custom partition layout we don't want
106
- # the user to modify.
107
- #
108
- # If nothing is specified, manual partitioning is enabled.
109
- #allowManualPartitioning: true
110
-
111
- # Initial selection on the Choice page
112
- #
113
- # There are four radio buttons (in principle: erase, replace, alongside, manual),
114
- # and you can pick which of them, if any, is initially selected. For most
115
- # installers, "none" is the right choice: it makes the user pick something specific,
116
- # rather than accidentally being able to click past an important choice (in particular,
117
- # "erase" is a dangerous choice).
118
- #
119
- # The default is "none"
120
- #
121
- initialPartitioningChoice: none
122
- #
123
- # Similarly, some of the installation choices may offer a choice of swap;
124
- # the available choices depend on *userSwapChoices*, above, and this
125
- # setting can be used to pick a specific one.
126
- #
127
- # The default is "none" (no swap) if that is one of the enabled options, otherwise
128
- # one of the items from the options.
129
- initialSwapChoice: none
130
-
131
- # Default partition table type, used when a "erase" disk is made.
132
- #
133
- # When erasing a disk, a new partition table is created on disk.
134
- # In other cases, e.g. Replace and Alongside, as well as when using
135
- # manual partitioning, this partition table exists already on disk
136
- # and it is left unmodified.
137
- #
138
- # Suggested values: gpt, msdos
139
- # If nothing is specified, Calamares defaults to "gpt" if system is
140
- # efi or "msdos".
141
- #
142
- # Names are case-sensitive and defined by KPMCore.
143
- # defaultPartitionTableType: msdos
144
-
145
- # Requirement for partition table type
146
- #
147
- # Restrict the installation on disks that match the type of partition
148
- # tables that are specified.
149
- #
150
- # Possible values: msdos, gpt. Names are case-sensitive and defined by KPMCore.
151
- #
152
- # If nothing is specified, Calamares defaults to both "msdos" and "gpt".
153
- #
154
- # requiredPartitionTableType: gpt
155
- # requiredPartitionTableType:
156
- # - msdos
157
- # - gpt
158
-
159
- # Default filesystem type, used when a "new" partition is made.
160
- #
161
- # When replacing a partition, the existing filesystem inside the
162
- # partition is retained. In other cases, e.g. Erase and Alongside,
163
- # as well as when using manual partitioning and creating a new
164
- # partition, this filesystem type is pre-selected. Note that
165
- # editing a partition in manual-creation mode will not automatically
166
- # change the filesystem type to this default value -- it is not
167
- # creating a new partition.
168
- #
169
- # Suggested values: ext2, ext3, ext4, reiser, xfs, jfs, btrfs
170
- # If nothing is specified, Calamares defaults to "ext4".
171
- #
172
- # Names are case-sensitive and defined by KPMCore.
173
- defaultFileSystemType: "ext4"
174
-
175
- # Selectable filesystem type, used when "erase" is done.
176
- #
177
- # When erasing the disk, the *defaultFileSystemType* is used (see
178
- # above), but it is also possible to give users a choice:
179
- # list suitable filesystems here. A drop-down is provided
180
- # to pick which is the filesystems will be used.
181
- #
182
- # The value *defaultFileSystemType* is added to this list (with a warning)
183
- # if not present; the default pick is the *defaultFileSystemType*.
184
- #
185
- # If not specified at all, uses *defaultFileSystemType* without a
186
- # warning (this matches traditional no-choice-available behavior best).
187
- # availableFileSystemTypes: ["ext4","f2fs"]
188
-
189
- # Show/hide LUKS related functionality in automated partitioning modes.
190
- # Disable this if you choose not to deploy early unlocking support in GRUB2
191
- # and/or your distribution's initramfs solution.
192
- #
193
- # BIG FAT WARNING:
194
- #
195
- # This option is unsupported, as it cuts out a crucial security feature.
196
- # Disabling LUKS and shipping Calamares without a correctly configured GRUB2
197
- # and initramfs is considered suboptimal use of the Calamares software. The
198
- # Calamares team will not provide user support for any potential issue that
199
- # may arise as a consequence of setting this option to false.
200
- # It is strongly recommended that system integrators put in the work to support
201
- # LUKS unlocking support in GRUB2 and initramfs/dracut/mkinitcpio/etc.
202
- # For more information on setting up GRUB2 for Calamares with LUKS, see
203
- # https://github.com/calamares/calamares/wiki/Deploy-LUKS
204
- #
205
- # If nothing is specified, LUKS is enabled in automated modes.
206
- #enableLuksAutomatedPartitioning: true
207
-
208
- # Partition layout.
209
- #
210
- # This optional setting specifies a custom partition layout.
211
- #
212
- # If nothing is specified, the default partition layout is a single partition
213
- # for root that uses 100% of the space and uses the filesystem defined by
214
- # defaultFileSystemType.
215
- #
216
- # Note: the EFI system partition is prepend automatically to the layout if
217
- # needed; the swap partition is appended to the layout if enabled (small of
218
- # suspend).
219
- #
220
- # Otherwise, the partition layout is defined as follow:
221
- #
222
- # partitionLayout:
223
- # - name: "rootfs"
224
- # type: "4f68bce3-e8cd-4db1-96e7-fbcaf984b709"
225
- # filesystem: "ext4"
226
- # mountPoint: "/"
227
- # size: 20%
228
- # minSize: 500M
229
- # maxSize: 10G
230
- # attributes: 0xffff000000000003
231
- # - name: "home"
232
- # type: "933ac7e1-2eb4-4f13-b844-0e14e2aef915"
233
- # filesystem: "ext4"
234
- # mountPoint: "/home"
235
- # size: 3G
236
- # minSize: 1.5G
237
- # features:
238
- # 64bit: false
239
- # casefold: true
240
- # - name: "data"
241
- # filesystem: "fat32"
242
- # mountPoint: "/data"
243
- # features:
244
- # sector-size: 4096
245
- # sectors-per-cluster: 128
246
- # size: 100%
247
- #
248
- # There can be any number of partitions, each entry having the following attributes:
249
- # - name: filesystem label
250
- # and
251
- # partition name (gpt only; since KPMCore 4.2.0)
252
- # - uuid: partition uuid (optional parameter; gpt only; requires KPMCore >= 4.2.0)
253
- # - type: partition type (optional parameter; gpt only; requires KPMCore >= 4.2.0)
254
- # - attributes: partition attributes (optional parameter; gpt only; requires KPMCore >= 4.2.0)
255
- # - filesystem: filesystem type (optional parameter)
256
- # - if not set at all, treat as "unformatted"
257
- # - if "unformatted", no filesystem will be created
258
- # - if "unknown" (or an unknown FS name, like "elephant") then the
259
- # default filesystem type, or the user's choice, will be applied instead
260
- # of "unknown" (e.g. the user might pick ext4, or xfs).
261
- # - mountPoint: partition mount point (optional parameter; not mounted if unset)
262
- # - size: partition size in bytes (append 'K', 'M' or 'G' for KiB, MiB or GiB)
263
- # or
264
- # % of the available drive space if a '%' is appended to the value
265
- # - minSize: minimum partition size (optional parameter)
266
- # - maxSize: maximum partition size (optional parameter)
267
- # - features: filesystem features (optional parameter; requires KPMCore >= 4.2.0)
268
- # name: boolean or integer or string
269
-
270
- # Checking for available storage
271
- #
272
- # This overlaps with the setting of the same name in the welcome module's
273
- # requirements section. If nothing is set by the welcome module, this
274
- # value is used instead. It is still a problem if there is no required
275
- # size set at all, and the replace and resize options will not be offered
276
- # if no required size is set.
277
- #
278
- # The value is in Gibibytes (GiB).
279
- #
280
- # BIG FAT WARNING: except for OEM-phase-0 use, you should be using
281
- # the welcome module, **and** configure this value in
282
- # `welcome.conf`, not here.
283
- # requiredStorage: 3.5
@@ -1,8 +0,0 @@
1
- # Manjaro
2
- # Calamares 3.2
3
- --
4
- dontChroot: false
5
- timeout: 30
6
- script:
7
- - "rm -r @@ROOT@@/usr/share/applications/install-system.desktop"
8
-
@@ -1,7 +0,0 @@
1
- # Manjaro
2
- # Calamares 3.2
3
- ---
4
- unpack:
5
- - source: /run/miso/bootmnt/manjaro/x86_64/livefs.sfs
6
- sourcefs: "squashfs"
7
- destination: ""
@@ -1,20 +0,0 @@
1
- # Arch
2
- # users
3
- ---
4
- userGroup: users
5
- defaultGroups:
6
- - cdrom
7
- - floppy
8
- - wheel
9
- - audio
10
- - dip
11
- - video
12
- - plugdev
13
- - netdev
14
- - lpadmin
15
- - scanner
16
- - bluetooth
17
- autologinGroup: autologin
18
- sudoersGroup: wheel
19
- setRootPassword: true
20
- doReusePassword: false
@@ -1,3 +0,0 @@
1
- ######################################################################################################
2
- # CUSTOM: You can add yours exclusions here: expample
3
- # blissos/data.img
File without changes