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
@@ -1498,5 +1498,5 @@
1498
1498
  ]
1499
1499
  }
1500
1500
  },
1501
- "version": "10.0.49"
1501
+ "version": "10.0.52"
1502
1502
  }
package/README.md CHANGED
@@ -490,7 +490,7 @@ EXAMPLES
490
490
  $ eggs adapt
491
491
  ```
492
492
 
493
- _See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/adapt.ts)_
493
+ _See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/adapt.ts)_
494
494
 
495
495
  ## `eggs analyze`
496
496
 
@@ -511,7 +511,7 @@ EXAMPLES
511
511
  sudo eggs analyze
512
512
  ```
513
513
 
514
- _See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/analyze.ts)_
514
+ _See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/analyze.ts)_
515
515
 
516
516
  ## `eggs autocomplete [SHELL]`
517
517
 
@@ -542,7 +542,7 @@ EXAMPLES
542
542
  $ eggs autocomplete --refresh-cache
543
543
  ```
544
544
 
545
- _See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.2.8/src/commands/autocomplete/index.ts)_
545
+ _See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v3.2.11/src/commands/autocomplete/index.ts)_
546
546
 
547
547
  ## `eggs calamares`
548
548
 
@@ -575,7 +575,7 @@ EXAMPLES
575
575
  sudo eggs calamares --remove
576
576
  ```
577
577
 
578
- _See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/calamares.ts)_
578
+ _See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/calamares.ts)_
579
579
 
580
580
  ## `eggs config`
581
581
 
@@ -602,7 +602,7 @@ EXAMPLES
602
602
  sudo eggs config --clean --nointeractive
603
603
  ```
604
604
 
605
- _See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/config.ts)_
605
+ _See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/config.ts)_
606
606
 
607
607
  ## `eggs cuckoo`
608
608
 
@@ -622,7 +622,7 @@ EXAMPLES
622
622
  sudo eggs cuckoo
623
623
  ```
624
624
 
625
- _See code: [src/commands/cuckoo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/cuckoo.ts)_
625
+ _See code: [src/commands/cuckoo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/cuckoo.ts)_
626
626
 
627
627
  ## `eggs dad`
628
628
 
@@ -650,7 +650,7 @@ EXAMPLES
650
650
  sudo dad --default
651
651
  ```
652
652
 
653
- _See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/dad.ts)_
653
+ _See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/dad.ts)_
654
654
 
655
655
  ## `eggs export iso`
656
656
 
@@ -675,7 +675,7 @@ EXAMPLES
675
675
  $ eggs export iso --clean
676
676
  ```
677
677
 
678
- _See code: [src/commands/export/iso.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/export/iso.ts)_
678
+ _See code: [src/commands/export/iso.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/export/iso.ts)_
679
679
 
680
680
  ## `eggs export pkg`
681
681
 
@@ -702,7 +702,7 @@ EXAMPLES
702
702
  $ eggs export pkg --all
703
703
  ```
704
704
 
705
- _See code: [src/commands/export/pkg.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/export/pkg.ts)_
705
+ _See code: [src/commands/export/pkg.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/export/pkg.ts)_
706
706
 
707
707
  ## `eggs help [COMMAND]`
708
708
 
@@ -722,7 +722,7 @@ DESCRIPTION
722
722
  Display help for eggs.
723
723
  ```
724
724
 
725
- _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.16/src/commands/help.ts)_
725
+ _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v6.2.18/src/commands/help.ts)_
726
726
 
727
727
  ## `eggs install`
728
728
 
@@ -763,7 +763,7 @@ EXAMPLES
763
763
  sudo eggs install --chroot
764
764
  ```
765
765
 
766
- _See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/install.ts)_
766
+ _See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/install.ts)_
767
767
 
768
768
  ## `eggs kill`
769
769
 
@@ -786,7 +786,7 @@ EXAMPLES
786
786
  sudo eggs kill
787
787
  ```
788
788
 
789
- _See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/kill.ts)_
789
+ _See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/kill.ts)_
790
790
 
791
791
  ## `eggs krill`
792
792
 
@@ -846,7 +846,7 @@ EXAMPLES
846
846
  $ eggs auto
847
847
  ```
848
848
 
849
- _See code: [src/commands/love.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/love.ts)_
849
+ _See code: [src/commands/love.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/love.ts)_
850
850
 
851
851
  ## `eggs mom`
852
852
 
@@ -866,7 +866,7 @@ EXAMPLES
866
866
  $ eggs mom
867
867
  ```
868
868
 
869
- _See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/mom.ts)_
869
+ _See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/mom.ts)_
870
870
 
871
871
  ## `eggs produce`
872
872
 
@@ -923,7 +923,7 @@ EXAMPLES
923
923
  sudo eggs produce --excludes home # exclude ~/*
924
924
  ```
925
925
 
926
- _See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/produce.ts)_
926
+ _See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/produce.ts)_
927
927
 
928
928
  ## `eggs status`
929
929
 
@@ -944,7 +944,7 @@ EXAMPLES
944
944
  $ eggs status
945
945
  ```
946
946
 
947
- _See code: [src/commands/status.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/status.ts)_
947
+ _See code: [src/commands/status.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/status.ts)_
948
948
 
949
949
  ## `eggs syncfrom`
950
950
 
@@ -970,7 +970,7 @@ EXAMPLES
970
970
  sudo eggs syncfrom --file /path/to/luks-volume
971
971
  ```
972
972
 
973
- _See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/syncfrom.ts)_
973
+ _See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/syncfrom.ts)_
974
974
 
975
975
  ## `eggs syncto`
976
976
 
@@ -997,7 +997,7 @@ EXAMPLES
997
997
  sudo eggs syncto --excludes
998
998
  ```
999
999
 
1000
- _See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/syncto.ts)_
1000
+ _See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/syncto.ts)_
1001
1001
 
1002
1002
  ## `eggs tools clean`
1003
1003
 
@@ -1019,7 +1019,7 @@ EXAMPLES
1019
1019
  sudo eggs tools clean
1020
1020
  ```
1021
1021
 
1022
- _See code: [src/commands/tools/clean.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/tools/clean.ts)_
1022
+ _See code: [src/commands/tools/clean.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/tools/clean.ts)_
1023
1023
 
1024
1024
  ## `eggs tools ppa`
1025
1025
 
@@ -1045,7 +1045,7 @@ EXAMPLES
1045
1045
  sudo eggs tools ppa --remove
1046
1046
  ```
1047
1047
 
1048
- _See code: [src/commands/tools/ppa.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/tools/ppa.ts)_
1048
+ _See code: [src/commands/tools/ppa.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/tools/ppa.ts)_
1049
1049
 
1050
1050
  ## `eggs tools skel`
1051
1051
 
@@ -1069,7 +1069,7 @@ EXAMPLES
1069
1069
  sudo eggs tools skel --user user-to-be-copied
1070
1070
  ```
1071
1071
 
1072
- _See code: [src/commands/tools/skel.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/tools/skel.ts)_
1072
+ _See code: [src/commands/tools/skel.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/tools/skel.ts)_
1073
1073
 
1074
1074
  ## `eggs tools stat`
1075
1075
 
@@ -1095,7 +1095,7 @@ EXAMPLES
1095
1095
  $ eggs tools stat --year
1096
1096
  ```
1097
1097
 
1098
- _See code: [src/commands/tools/stat.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/tools/stat.ts)_
1098
+ _See code: [src/commands/tools/stat.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/tools/stat.ts)_
1099
1099
 
1100
1100
  ## `eggs tools yolk`
1101
1101
 
@@ -1116,7 +1116,7 @@ EXAMPLES
1116
1116
  sudo eggs tools yolk
1117
1117
  ```
1118
1118
 
1119
- _See code: [src/commands/tools/yolk.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/tools/yolk.ts)_
1119
+ _See code: [src/commands/tools/yolk.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/tools/yolk.ts)_
1120
1120
 
1121
1121
  ## `eggs update`
1122
1122
 
@@ -1137,7 +1137,7 @@ EXAMPLES
1137
1137
  $ eggs update
1138
1138
  ```
1139
1139
 
1140
- _See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/update.ts)_
1140
+ _See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/update.ts)_
1141
1141
 
1142
1142
  ## `eggs version`
1143
1143
 
@@ -1157,7 +1157,7 @@ FLAG DESCRIPTIONS
1157
1157
  Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.
1158
1158
  ```
1159
1159
 
1160
- _See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v2.2.15/src/commands/version.ts)_
1160
+ _See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v2.2.16/src/commands/version.ts)_
1161
1161
 
1162
1162
  ## `eggs wardrobe get [REPO]`
1163
1163
 
@@ -1183,7 +1183,7 @@ EXAMPLES
1183
1183
  $ eggs wardrobe get your-wardrobe
1184
1184
  ```
1185
1185
 
1186
- _See code: [src/commands/wardrobe/get.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/wardrobe/get.ts)_
1186
+ _See code: [src/commands/wardrobe/get.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/wardrobe/get.ts)_
1187
1187
 
1188
1188
  ## `eggs wardrobe list [REPO]`
1189
1189
 
@@ -1212,7 +1212,7 @@ EXAMPLES
1212
1212
  $ eggs wardrobe list --distro arch
1213
1213
  ```
1214
1214
 
1215
- _See code: [src/commands/wardrobe/list.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/wardrobe/list.ts)_
1215
+ _See code: [src/commands/wardrobe/list.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/wardrobe/list.ts)_
1216
1216
 
1217
1217
  ## `eggs wardrobe show [REPO]`
1218
1218
 
@@ -1242,7 +1242,7 @@ EXAMPLES
1242
1242
  $ eggs wardrobe show accessories/
1243
1243
  ```
1244
1244
 
1245
- _See code: [src/commands/wardrobe/show.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/wardrobe/show.ts)_
1245
+ _See code: [src/commands/wardrobe/show.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/wardrobe/show.ts)_
1246
1246
 
1247
1247
  ## `eggs wardrobe wear [REPO]`
1248
1248
 
@@ -1273,7 +1273,7 @@ EXAMPLES
1273
1273
  sudo eggs wardrobe wear wagtail/waydroid
1274
1274
  ```
1275
1275
 
1276
- _See code: [src/commands/wardrobe/wear.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.49/src/commands/wardrobe/wear.ts)_
1276
+ _See code: [src/commands/wardrobe/wear.ts](https://github.com/pieroproietti/penguins-eggs/blob/v10.0.52/src/commands/wardrobe/wear.ts)_
1277
1277
  <!-- commandsstop -->
1278
1278
 
1279
1279
  # penGUI
@@ -1,21 +1,35 @@
1
- # eggs: isolinux.main.alpine.cfg
1
+ # eggs: isolinux.main.cfg
2
2
  #
3
- path
4
- #include isolinux.theme.cfg
5
- DEFAULT vesamenu.c32
6
3
 
7
- TIMEOUT 100
8
- PROMPT 0
4
+ # search path for the c32 support libraries (libcom32, libutil etc.)
5
+ path
6
+ include isolinux.theme.cfg
7
+ default vesamenu.c32
8
+ prompt 0
9
+ timeout 100
9
10
 
10
- LABEL TEST
11
- MENU LABEL {{{fullname}}}
12
- SAY "Booting {{{fullname}}} GNU/Linux (kernel {{{kernel}}})"
13
- LINUX {{{vmlinuz}}}
11
+ label Live
12
+ menu label {{{fullname}}} Live/Installation Mode
13
+ say "Booting {{{fullname}}} GNU/Linux (kernel {{{kernel}}})"
14
+ linux {{{vmlinuz}}}
15
+ append initrd={{{initrdImg}}} {{{kernel_parameters}}}
16
+
17
+
18
+ label Safe
19
+ menu label {{{fullname}}} Safe Mode
20
+ say "Booting {{{fullname}}} GNU/Linux (kernel {{{kernel}}})"
21
+ linux {{{vmlinuz}}}
14
22
  append initrd={{{initrdImg}}} {{{kernel_parameters}}}
23
+
15
24
 
25
+ label Text
26
+ menu label {{{fullname}}} Text Mode
27
+ say "Booting {{{fullname}}} GNU/Linux (kernel {{{kernel}}})"
28
+ linux {{{vmlinuz}}}
29
+ append initrd={{{initrdImg}}} {{{kernel_parameters}}}
30
+
16
31
  label local
17
32
  menu label Boot from local disk
18
33
  COM32 chain.c32
19
34
  APPEND hd0
20
35
  say "Booting from the first hard drive"
21
-
@@ -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
@@ -0,0 +1,22 @@
1
+ # Fedora
2
+ # Configure one or more display managers (e.g. SDDM)
3
+ # with a "best effort" approach.
4
+ ---
5
+ #The DM module attempts to set up all the DMs found in this list, in that precise order.
6
+ #It also sets up autologin, if the feature is enabled in globalstorage.
7
+ #The displaymanagers list can also be set in globalstorage, and in that case it overrides anything set up here.
8
+ displaymanagers: none
9
+
10
+ #Enable the following settings to force a desktop environment in your displaymanager configuration file:
11
+ #defaultDesktopEnvironment:
12
+ # executable: "startkde"
13
+ # desktopFile: "plasma"
14
+
15
+ #If true, try to ensure that the user, group, /var directory etc. for the
16
+ #display manager are set up correctly. This is normally done by the distribution
17
+ #packages, and best left to them. Therefore, it is disabled by default.
18
+ basicSetup: false
19
+
20
+ #If true, setup autologin for openSUSE. This only makes sense on openSUSE
21
+ #derivatives or other systems where /etc/sysconfig/displaymanager exists.
22
+ sysconfigSetup: false
@@ -0,0 +1,5 @@
1
+ # Debian/Bookworm
2
+ ---
3
+ restartNowEnabled: true
4
+ restartNowChecked: true
5
+ restartNowCommand: none
@@ -0,0 +1,12 @@
1
+ # Debian/Bookworm
2
+ ---
3
+ mountOptions:
4
+ default: defaults,noatime
5
+ btrfs: defaults #,noatime,space_cache,autodefrag
6
+ ssdExtraMountOptions:
7
+ ext4: discard
8
+ jfs: discard
9
+ xfs: discard
10
+ swap: discard
11
+ btrfs: discard,compress=lzo
12
+ crypttabOptions: luks,keyscript=/bin/cat
@@ -0,0 +1,97 @@
1
+ ---
2
+ # This settings are used to set your default system time zone.
3
+ # Time zones are usually located under /usr/share/zoneinfo and
4
+ # provided by the 'tzdata' package of your Distribution.
5
+ #
6
+ # Distributions using systemd can list available
7
+ # time zones by using the timedatectl command.
8
+ # timedatectl list-timezones
9
+ #
10
+ # The starting timezone (e.g. the pin-on-the-map) when entering
11
+ # the locale page can be set through keys *region* and *zone*.
12
+ # If either is not set, defaults to America/New_York.
13
+ #
14
+ region: "Europe"
15
+ zone: "Rome"
16
+
17
+
18
+ # System locales are detected in the following order:
19
+ #
20
+ # - /usr/share/i18n/SUPPORTED
21
+ # - localeGenPath (defaults to /etc/ if not set)
22
+ # - 'locale -a' output
23
+ #
24
+ # Enable only when your Distribution is using an
25
+ # custom path for
26
+ #
27
+ #localeGenPath: "PATH_TO/"
28
+
29
+ # GeoIP based Language settings: Leave commented out to disable GeoIP.
30
+ #
31
+ # GeoIP needs a working Internet connection.
32
+ # This can be managed from `welcome.conf` by adding
33
+ # internet to the list of required conditions.
34
+ #
35
+ # The configuration
36
+ # is in three parts: a *style*, which can be "json" or "xml"
37
+ # depending on the kind of data returned by the service, and
38
+ # a *url* where the data is retrieved, and an optional *selector*
39
+ # to pick the right field out of the returned data (e.g. field
40
+ # name in JSON or element name in XML).
41
+ #
42
+ # The default selector (when the setting is blank) is picked to
43
+ # work with existing JSON providers (which use "time_zone") and
44
+ # Ubiquity's XML providers (which use "TimeZone").
45
+ #
46
+ # If the service configured via *url* uses
47
+ # a different attribute name (e.g. "timezone") in JSON or a
48
+ # different element tag (e.g. "<Time_Zone>") in XML, set this
49
+ # string to the name or tag to be used.
50
+ #
51
+ # In JSON:
52
+ # - if the string contains "." characters, this is used as a
53
+ # multi-level selector, e.g. "a.b" will select the timezone
54
+ # from data "{a: {b: "Europe/Amsterdam" } }".
55
+ # - each part of the string split by "." characters is used as
56
+ # a key into the JSON data.
57
+ # In XML:
58
+ # - all elements with the named tag (e.g. all TimeZone) elements
59
+ # from the document are checked; the first one with non-empty
60
+ # text value is used.
61
+ #
62
+ #
63
+ # An HTTP(S) request is made to *url*. The request should return
64
+ # valid data in a suitable format, depending on *style*;
65
+ # generally this includes a string value with the timezone
66
+ # in <region>/<zone> format. For services that return data which
67
+ # does not follow the conventions of "suitable data" described
68
+ # below, *selector* may be used to pick different data.
69
+ #
70
+ # Note that this example URL works, but the service is shutting
71
+ # down in June 2018.
72
+ #
73
+ # Suitable JSON data looks like
74
+ # ```
75
+ # {"time_zone":"America/New_York"}
76
+ # ```
77
+ # Suitable XML data looks like
78
+ # ```
79
+ # <Response><TimeZone>Europe/Brussels</TimeZone></Response>
80
+ # ```
81
+ #
82
+ # To accommodate providers of GeoIP timezone data with peculiar timezone
83
+ # naming conventions, the following cleanups are performed automatically:
84
+ # - backslashes are removed
85
+ # - spaces are replaced with _
86
+ #
87
+ # Legacy settings "geoipStyle", "geoipUrl" and "geoipSelector"
88
+ # in the top-level are still supported, but I'd advise against.
89
+ #
90
+ # To disable GeoIP checking, either comment-out the entire geoip section,
91
+ # or set the *style* key to an unsupported format (e.g. `none`).
92
+ # Also, note the analogous feature in src/modules/welcome/welcome.conf.
93
+ #
94
+ geoip:
95
+ style: "json"
96
+ url: "https://geoip.kde.org/v1/calamares"
97
+ selector: "" # leave blank for the default
@@ -0,0 +1,5 @@
1
+ # Debian/Bookworm
2
+ # Writes an openswap configuration with LUKS settings to the given path
3
+ ---
4
+ # Path of the configuration file to write (in the target system)
5
+ configFilePath: /etc/openswap.conf
@@ -0,0 +1,17 @@
1
+ # Debian/bookworm
2
+ # added Whether to copy entropy from the host
3
+ ---
4
+ # Whether to create /etc/machine-id for systemd.
5
+ systemd: true
6
+ # Whether to create /var/lib/dbus/machine-id for D-Bus.
7
+ dbus: true
8
+ # Whether /var/lib/dbus/machine-id should be a symlink to /etc/machine-id
9
+ # (ignored if dbus is false, or if there is no /etc/machine-id to point to).
10
+ symlink: true
11
+ # Whether to copy entropy from the host
12
+ entropy-copy: true
13
+ # Which files to write (paths in the target)
14
+ entropy-files:
15
+ - /var/lib/urandom/random-seed
16
+ - /var/lib/systemd/random-seed
17
+
@@ -0,0 +1,56 @@
1
+ # Debian/Bookworm
2
+ # Mount filesystems in the target (generally, before treating the
3
+ # target as a usable chroot / "live" system). Filesystems are
4
+ # automatically mounted from the partitioning module. Filesystems
5
+ # listed here are **extra**. The filesystems listed in *extraMounts*
6
+ # are mounted in all target systems. The filesystems listed in
7
+ # *extraMountsEfi* are mounted in the target system **only** if
8
+ # the host machine uses UEFI.
9
+ ---
10
+ # Extra filesystems to mount. The key's value is a list of entries; each
11
+ # entry has four keys:
12
+ # - device The device node to mount
13
+ # - fs The filesystem type to use
14
+ # - mountPoint Where to mount the filesystem
15
+ # - options (optional) Extra options to pass to mount(8)
16
+ #
17
+ extraMounts:
18
+ - device: proc
19
+ fs: proc
20
+ mountPoint: /proc
21
+ - device: sys
22
+ fs: sysfs
23
+ mountPoint: /sys
24
+ - device: /dev
25
+ mountPoint: /dev
26
+ options: {{{options}}}
27
+ - device: tmpfs
28
+ fs: tmpfs
29
+ mountPoint: /run
30
+ - device: /run/udev
31
+ mountPoint: /run/udev
32
+ options: {{{options}}}
33
+
34
+ extraMountsEfi:
35
+ - device: efivarfs
36
+ fs: efivarfs
37
+ mountPoint: /sys/firmware/efi/efivars
38
+
39
+ # added from spiralLinux
40
+ btrfsSubvolumes:
41
+ - mountPoint: /
42
+ subvolume: /@
43
+ - mountPoint: /.snapshots
44
+ subvolume: /@snapshots
45
+ - mountPoint: /home
46
+ subvolume: /@home
47
+ - mountPoint: /root
48
+ subvolume: /@root
49
+ - mountPoint: /var/log
50
+ subvolume: /@var@log
51
+ - mountPoint: /var/lib/AccountsService
52
+ subvolume: /@var@lib@AccountsService
53
+ - mountPoint: /var/lib/blueman
54
+ subvolume: /@var@lib@blueman
55
+ - mountPoint: /tmp
56
+ subvolume: /@tmp
@@ -0,0 +1,6 @@
1
+ # Fedora
2
+ # packages
3
+ ---
4
+ backend: dnf
5
+
6
+ {{operations}}