penguins-eggs 9.0.35 → 9.0.48

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 (131) hide show
  1. package/README.md +442 -17
  2. package/conf/distros/buster/calamares/modules/bootloader.yml +3 -1
  3. package/conf/eggs.yaml +9 -2
  4. package/lib/classes/basket.js +4 -4
  5. package/lib/classes/bleach.js +2 -2
  6. package/lib/classes/compressors.js +1 -1
  7. package/lib/classes/daddy.js +6 -6
  8. package/lib/classes/distro.js +17 -3
  9. package/lib/classes/family/archlinux.js +4 -4
  10. package/lib/classes/family/debian.js +4 -4
  11. package/lib/classes/family/fedora.js +4 -4
  12. package/lib/classes/family/suse.js +4 -4
  13. package/lib/classes/i18n.d.ts +28 -4
  14. package/lib/classes/i18n.js +112 -84
  15. package/lib/classes/incubation/branding.js +13 -7
  16. package/lib/classes/incubation/distros/bionic.js +1 -1
  17. package/lib/classes/incubation/distros/buster.js +1 -1
  18. package/lib/classes/incubation/distros/focal.js +1 -1
  19. package/lib/classes/incubation/distros/jessie.js +1 -1
  20. package/lib/classes/incubation/distros/rolling.js +1 -1
  21. package/lib/classes/incubation/fisherman-helper/displaymanager.js +1 -1
  22. package/lib/classes/incubation/fisherman-helper/packages.js +1 -1
  23. package/lib/classes/incubation/fisherman.js +5 -5
  24. package/lib/classes/incubation/incubator.js +4 -4
  25. package/lib/classes/incubation/installer.js +2 -2
  26. package/lib/classes/initrd.js +2 -2
  27. package/lib/classes/keyboards.d.ts +45 -0
  28. package/lib/classes/keyboards.js +196 -0
  29. package/lib/classes/krill_install.d.ts +4 -0
  30. package/lib/classes/krill_install.js +28 -10
  31. package/lib/classes/krill_prepare.d.ts +4 -0
  32. package/lib/classes/krill_prepare.js +56 -77
  33. package/lib/classes/locales.d.ts +14 -0
  34. package/lib/classes/locales.js +54 -0
  35. package/lib/classes/n8.js +1 -1
  36. package/lib/classes/ovary.js +17 -17
  37. package/lib/classes/pacman.js +19 -19
  38. package/lib/classes/pve-live.js +3 -3
  39. package/lib/classes/settings.d.ts +6 -0
  40. package/lib/classes/settings.js +11 -13
  41. package/lib/classes/systemctl.js +1 -1
  42. package/lib/classes/tailor.d.ts +20 -0
  43. package/lib/classes/tailor.js +460 -0
  44. package/lib/classes/tools.js +4 -4
  45. package/lib/classes/users.js +1 -1
  46. package/lib/classes/utils.js +9 -9
  47. package/lib/classes/xdg.js +5 -5
  48. package/lib/classes/yolk.js +5 -5
  49. package/lib/commands/adapt.js +1 -1
  50. package/lib/commands/analyze.js +2 -2
  51. package/lib/commands/bro.js +2 -2
  52. package/lib/commands/calamares.js +4 -4
  53. package/lib/commands/config.js +4 -4
  54. package/lib/commands/dad.js +2 -2
  55. package/lib/commands/export/deb.js +2 -2
  56. package/lib/commands/export/docs.js +2 -2
  57. package/lib/commands/export/iso.js +2 -2
  58. package/lib/commands/info.js +1 -1
  59. package/lib/commands/install.js +5 -5
  60. package/lib/commands/kill.js +2 -2
  61. package/lib/commands/mom.js +2 -2
  62. package/lib/commands/produce.js +8 -8
  63. package/lib/commands/remove.js +2 -2
  64. package/lib/commands/syncfrom.js +1 -1
  65. package/lib/commands/syncto.js +2 -2
  66. package/lib/commands/tools/clean.js +2 -2
  67. package/lib/commands/tools/locales.js +9 -4
  68. package/lib/commands/tools/skel.js +2 -2
  69. package/lib/commands/tools/stat.js +3 -3
  70. package/lib/commands/tools/yolk.js +4 -4
  71. package/lib/commands/update.js +5 -5
  72. package/lib/commands/wardrobe/ironing.d.ts +14 -0
  73. package/lib/commands/wardrobe/ironing.js +123 -0
  74. package/lib/commands/wardrobe/list.d.ts +13 -0
  75. package/lib/commands/wardrobe/list.js +46 -0
  76. package/lib/commands/wardrobe/show.d.ts +15 -0
  77. package/lib/commands/wardrobe/show.js +55 -0
  78. package/lib/commands/wardrobe/wear.d.ts +11 -0
  79. package/lib/commands/wardrobe/wear.js +42 -0
  80. package/lib/components/elements/information.js +6 -6
  81. package/lib/components/elements/steps.js +1 -1
  82. package/lib/components/elements/title.js +2 -2
  83. package/lib/components/finished.js +5 -5
  84. package/lib/components/install.js +5 -5
  85. package/lib/components/keyboard.js +5 -8
  86. package/lib/components/location.js +5 -5
  87. package/lib/components/network.js +5 -5
  88. package/lib/components/partitions.js +5 -5
  89. package/lib/components/summary.js +5 -5
  90. package/lib/components/users.js +5 -5
  91. package/lib/components/welcome.js +6 -6
  92. package/lib/interfaces/i-costume.d.ts +43 -0
  93. package/lib/interfaces/i-costume.js +2 -0
  94. package/lib/interfaces/i-krill.d.ts +1 -0
  95. package/lib/interfaces/i-packages.d.ts +13 -0
  96. package/lib/interfaces/i-packages.js +2 -0
  97. package/lib/interfaces/i-xkb-model.d.ts +17 -0
  98. package/lib/interfaces/i-xkb-model.js +2 -0
  99. package/lib/interfaces/index.d.ts +1 -0
  100. package/lib/lib/cli-autologin.js +3 -3
  101. package/lib/lib/select_address_type.js +1 -1
  102. package/lib/lib/select_filesystem_type.js +2 -2
  103. package/lib/lib/select_installation_device.js +1 -1
  104. package/lib/lib/select_interface.js +1 -1
  105. package/lib/lib/select_keyboard_layout.d.ts +1 -28
  106. package/lib/lib/select_keyboard_layout.js +18 -33
  107. package/lib/lib/select_keyboard_model.d.ts +4 -0
  108. package/lib/lib/select_keyboard_model.js +36 -0
  109. package/lib/lib/select_keyboard_option.d.ts +4 -0
  110. package/lib/lib/select_keyboard_option.js +36 -0
  111. package/lib/lib/select_keyboard_variant.d.ts +1 -5
  112. package/lib/lib/select_keyboard_variant.js +32 -5
  113. package/lib/lib/select_languages.d.ts +1 -1
  114. package/lib/lib/select_languages.js +8 -7
  115. package/lib/lib/select_regions.d.ts +1 -1
  116. package/lib/lib/select_regions.js +2 -2
  117. package/lib/lib/select_user_swap_choice.js +2 -2
  118. package/oclif.manifest.json +1 -1
  119. package/package.json +3 -2
  120. package/scripts/_eggs +43 -2
  121. package/scripts/eggs.bash +6 -2
  122. package/scripts/resy.sh +8 -0
  123. package/wardrobe.d/external.yml +7 -0
  124. package/wardrobe.d/hen/control.template +10 -0
  125. package/wardrobe.d/hen/index.yml +212 -0
  126. package/wardrobe.d/kde/index.yml +41 -0
  127. package/wardrobe.d/lamp/index.yml +35 -0
  128. package/wardrobe.d/xfce4/index.yml +53 -0
  129. package/conf/distros/buster/locales/locale.gen.template +0 -10
  130. package/conf/distros/buster/locales/locale.template +0 -11
  131. package/conf/distros/focal/locale.gen.template +0 -8
package/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ [![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/banner2-direct.svg)](https://vshymanskyy.github.io/StandWithUkraine)
2
+
1
3
  penguins-eggs
2
4
  =============
3
5
 
@@ -133,7 +135,7 @@ $ npm install -g penguins-eggs
133
135
  $ eggs COMMAND
134
136
  running command...
135
137
  $ eggs (--version|-v)
136
- penguins-eggs/9.0.35 linux-x64 node-v16.14.0
138
+ penguins-eggs/9.0.48 linux-x64 node-v16.14.2
137
139
  $ eggs --help [COMMAND]
138
140
  USAGE
139
141
  $ eggs COMMAND
@@ -144,22 +146,33 @@ USAGE
144
146
  # Commands
145
147
  <!-- commands -->
146
148
  * [`eggs adapt`](#eggs-adapt)
149
+ * [`eggs adjust`](#eggs-adjust)
147
150
  * [`eggs analyze`](#eggs-analyze)
148
151
  * [`eggs autocomplete [SHELL]`](#eggs-autocomplete-shell)
152
+ * [`eggs backup`](#eggs-backup)
149
153
  * [`eggs bro`](#eggs-bro)
150
154
  * [`eggs calamares`](#eggs-calamares)
155
+ * [`eggs clean`](#eggs-clean)
151
156
  * [`eggs config`](#eggs-config)
152
157
  * [`eggs dad`](#eggs-dad)
153
158
  * [`eggs export deb`](#eggs-export-deb)
154
159
  * [`eggs export docs`](#eggs-export-docs)
155
160
  * [`eggs export iso`](#eggs-export-iso)
161
+ * [`eggs hatch`](#eggs-hatch)
156
162
  * [`eggs help [COMMAND]`](#eggs-help-command)
157
163
  * [`eggs info`](#eggs-info)
158
164
  * [`eggs install`](#eggs-install)
159
165
  * [`eggs kill`](#eggs-kill)
166
+ * [`eggs krill`](#eggs-krill)
167
+ * [`eggs lay`](#eggs-lay)
160
168
  * [`eggs mom`](#eggs-mom)
169
+ * [`eggs prerequisites`](#eggs-prerequisites)
161
170
  * [`eggs produce`](#eggs-produce)
162
171
  * [`eggs remove`](#eggs-remove)
172
+ * [`eggs restore`](#eggs-restore)
173
+ * [`eggs skel`](#eggs-skel)
174
+ * [`eggs spawn`](#eggs-spawn)
175
+ * [`eggs stat`](#eggs-stat)
163
176
  * [`eggs syncfrom`](#eggs-syncfrom)
164
177
  * [`eggs syncto`](#eggs-syncto)
165
178
  * [`eggs tools clean`](#eggs-tools-clean)
@@ -169,6 +182,10 @@ USAGE
169
182
  * [`eggs tools yolk`](#eggs-tools-yolk)
170
183
  * [`eggs update`](#eggs-update)
171
184
  * [`eggs version`](#eggs-version)
185
+ * [`eggs wardrobe ironing`](#eggs-wardrobe-ironing)
186
+ * [`eggs wardrobe list`](#eggs-wardrobe-list)
187
+ * [`eggs wardrobe show`](#eggs-wardrobe-show)
188
+ * [`eggs wardrobe wear`](#eggs-wardrobe-wear)
172
189
 
173
190
  ## `eggs adapt`
174
191
 
@@ -189,7 +206,26 @@ ALIASES
189
206
  $ eggs adjust
190
207
  ```
191
208
 
192
- _See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/adapt.ts)_
209
+ _See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.48/src/commands/adapt.ts)_
210
+
211
+ ## `eggs adjust`
212
+
213
+ adapt monitor resolution for VM only
214
+
215
+ ```
216
+ USAGE
217
+ $ eggs adjust [-v] [-h]
218
+
219
+ FLAGS
220
+ -h, --help Show CLI help.
221
+ -v, --verbose
222
+
223
+ DESCRIPTION
224
+ adapt monitor resolution for VM only
225
+
226
+ ALIASES
227
+ $ eggs adjust
228
+ ```
193
229
 
194
230
  ## `eggs analyze`
195
231
 
@@ -210,7 +246,7 @@ EXAMPLES
210
246
  $ sudo eggs analyze
211
247
  ```
212
248
 
213
- _See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/analyze.ts)_
249
+ _See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.48/src/commands/analyze.ts)_
214
250
 
215
251
  ## `eggs autocomplete [SHELL]`
216
252
 
@@ -241,6 +277,30 @@ EXAMPLES
241
277
 
242
278
  _See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v1.2.0/src/commands/autocomplete/index.ts)_
243
279
 
280
+ ## `eggs backup`
281
+
282
+ Backup users, server and datas to luks-eggs-backup
283
+
284
+ ```
285
+ USAGE
286
+ $ eggs backup [--delete <value>] [-f <value>] [-h] [-v]
287
+
288
+ FLAGS
289
+ -f, --file=<value> file LUKS volume encrypted
290
+ -h, --help Show CLI help.
291
+ -v, --verbose verbose
292
+ --delete=<value> rsync --delete delete extraneous files from dest dirs
293
+
294
+ DESCRIPTION
295
+ Backup users, server and datas to luks-eggs-backup
296
+
297
+ ALIASES
298
+ $ eggs backup
299
+
300
+ EXAMPLES
301
+ $ sudo eggs syncto
302
+ ```
303
+
244
304
  ## `eggs bro`
245
305
 
246
306
  bro: waydroid helper
@@ -256,7 +316,7 @@ DESCRIPTION
256
316
  bro: waydroid helper
257
317
  ```
258
318
 
259
- _See code: [src/commands/bro.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/bro.ts)_
319
+ _See code: [src/commands/bro.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.48/src/commands/bro.ts)_
260
320
 
261
321
  ## `eggs calamares`
262
322
 
@@ -285,7 +345,26 @@ EXAMPLES
285
345
  install calamares and create it's configuration's files
286
346
  ```
287
347
 
288
- _See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/calamares.ts)_
348
+ _See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.48/src/commands/calamares.ts)_
349
+
350
+ ## `eggs clean`
351
+
352
+ clean system log, apt, etc
353
+
354
+ ```
355
+ USAGE
356
+ $ eggs clean [-h] [-v]
357
+
358
+ FLAGS
359
+ -h, --help Show CLI help.
360
+ -v, --verbose verbose
361
+
362
+ DESCRIPTION
363
+ clean system log, apt, etc
364
+
365
+ ALIASES
366
+ $ eggs clean
367
+ ```
289
368
 
290
369
  ## `eggs config`
291
370
 
@@ -312,7 +391,7 @@ EXAMPLES
312
391
  Configure and install prerequisites deb packages to run it
313
392
  ```
314
393
 
315
- _See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/config.ts)_
394
+ _See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.48/src/commands/config.ts)_
316
395
 
317
396
  ## `eggs dad`
318
397
 
@@ -332,7 +411,7 @@ DESCRIPTION
332
411
  ask help from daddy - configuration helper
333
412
  ```
334
413
 
335
- _See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/dad.ts)_
414
+ _See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.48/src/commands/dad.ts)_
336
415
 
337
416
  ## `eggs export deb`
338
417
 
@@ -387,6 +466,33 @@ DESCRIPTION
387
466
  export iso in the destination host
388
467
  ```
389
468
 
469
+ ## `eggs hatch`
470
+
471
+ command-line system installer - the egg became a penguin!
472
+
473
+ ```
474
+ USAGE
475
+ $ eggs hatch [-c] [-k] [-p] [-h] [-v]
476
+
477
+ FLAGS
478
+ -c, --cli force use CLI installer
479
+ -h, --help Show CLI help.
480
+ -k, --crypted crypted CLI installation
481
+ -p, --pve Proxmox VE install
482
+ -v, --verbose verbose
483
+
484
+ DESCRIPTION
485
+ command-line system installer - the egg became a penguin!
486
+
487
+ ALIASES
488
+ $ eggs hatch
489
+ $ eggs krill
490
+
491
+ EXAMPLES
492
+ $ eggs install
493
+ Install the system using GUI or CLI installer
494
+ ```
495
+
390
496
  ## `eggs help [COMMAND]`
391
497
 
392
498
  Display help for eggs.
@@ -405,7 +511,7 @@ DESCRIPTION
405
511
  Display help for eggs.
406
512
  ```
407
513
 
408
- _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.11/src/commands/help.ts)_
514
+ _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.12/src/commands/help.ts)_
409
515
 
410
516
  ## `eggs info`
411
517
 
@@ -423,7 +529,7 @@ DESCRIPTION
423
529
  re-thinking for a different approach to CLI
424
530
  ```
425
531
 
426
- _See code: [src/commands/info.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/info.ts)_
532
+ _See code: [src/commands/info.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.48/src/commands/info.ts)_
427
533
 
428
534
  ## `eggs install`
429
535
 
@@ -452,7 +558,7 @@ EXAMPLES
452
558
  Install the system using GUI or CLI installer
453
559
  ```
454
560
 
455
- _See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/install.ts)_
561
+ _See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.48/src/commands/install.ts)_
456
562
 
457
563
  ## `eggs kill`
458
564
 
@@ -474,7 +580,97 @@ EXAMPLES
474
580
  kill the eggs/free the nest
475
581
  ```
476
582
 
477
- _See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/kill.ts)_
583
+ _See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.48/src/commands/kill.ts)_
584
+
585
+ ## `eggs krill`
586
+
587
+ command-line system installer - the egg became a penguin!
588
+
589
+ ```
590
+ USAGE
591
+ $ eggs krill [-c] [-k] [-p] [-h] [-v]
592
+
593
+ FLAGS
594
+ -c, --cli force use CLI installer
595
+ -h, --help Show CLI help.
596
+ -k, --crypted crypted CLI installation
597
+ -p, --pve Proxmox VE install
598
+ -v, --verbose verbose
599
+
600
+ DESCRIPTION
601
+ command-line system installer - the egg became a penguin!
602
+
603
+ ALIASES
604
+ $ eggs hatch
605
+ $ eggs krill
606
+
607
+ EXAMPLES
608
+ $ eggs install
609
+ Install the system using GUI or CLI installer
610
+ ```
611
+
612
+ ## `eggs lay`
613
+
614
+ produce a live image from your system whithout your data
615
+
616
+ ```
617
+ USAGE
618
+ $ eggs lay [-p <value>] [--basename <value>] [-b] [-f] [-n] [-m] [-v] [-y] [-s] [-h] [--theme <value>]
619
+ [--addons <value>] [--release]
620
+
621
+ FLAGS
622
+ -b, --backup backup mode
623
+ -f, --fast fast compression
624
+ -h, --help Show CLI help.
625
+ -m, --max max compression
626
+ -n, --normal normal compression
627
+ -p, --prefix=<value> prefix
628
+ -s, --script script mode. Generate scripts to manage iso build
629
+ -v, --verbose verbose
630
+ -y, --yolk -y force yolk renew
631
+ --addons=<value>... addons to be used: adapt, ichoice, pve, rsupport
632
+ --basename=<value> basename
633
+ --release release: configure GUI installer to remove eggs and calamares after installation
634
+ --theme=<value> theme for livecd, calamares branding and partitions
635
+
636
+ DESCRIPTION
637
+ produce a live image from your system whithout your data
638
+
639
+ ALIASES
640
+ $ eggs spawn
641
+ $ eggs lay
642
+
643
+ EXAMPLES
644
+ $ sudo eggs produce
645
+ produce an ISO called [hostname]-[arch]-YYYY-MM-DD_HHMM.iso, compressed xz (standard compression).
646
+ If hostname=ugo and arch=i386 ugo-x86-2020-08-25_1215.iso
647
+
648
+ $ sudo eggs produce -v
649
+ same as previuos, but with --verbose output
650
+
651
+ $ sudo eggs produce -vf
652
+ same as previuos, compression zstd, lz4 or gzip (depend from system capability)
653
+
654
+ $ sudo eggs produce -vm
655
+ same as previuos, compression xz -Xbcj x86 (max compression, about 10%
656
+ more compressed)
657
+
658
+ $ sudo eggs produce -vf --basename leo --theme debian --addons adapt
659
+ produce an ISO called leo-i386-2020-08-25_1215.iso compression fast,
660
+ using Debian theme and link to adapt
661
+
662
+ $ sudo eggs produce -v --basename leo --theme debian --addons rsupport
663
+ produce an ISO called leo-i386-2020-08-25_1215.iso compression xz,
664
+ using Debian theme and link to dwagent
665
+
666
+ $ sudo eggs produce -v --basename leo --rsupport
667
+ produce an ISO called leo-i386-2020-08-25_1215.iso compression xz, using eggs
668
+ theme and link to dwagent
669
+
670
+ $ sudo eggs produce -vs --basename leo --rsupport
671
+ produce scripts to build an ISO as the previus example. Scripts can be found
672
+ in /home/eggs/ovarium and you can customize all you need
673
+ ```
478
674
 
479
675
  ## `eggs mom`
480
676
 
@@ -491,7 +687,32 @@ DESCRIPTION
491
687
  ask for mommy - gui helper
492
688
  ```
493
689
 
494
- _See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/mom.ts)_
690
+ _See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.48/src/commands/mom.ts)_
691
+
692
+ ## `eggs prerequisites`
693
+
694
+ Configure and install prerequisites deb packages to run it
695
+
696
+ ```
697
+ USAGE
698
+ $ eggs prerequisites [-n] [-c] [-h] [-v]
699
+
700
+ FLAGS
701
+ -c, --clean remove old configuration before to create new one
702
+ -h, --help Show CLI help.
703
+ -n, --nointeractive assume yes
704
+ -v, --verbose verbose
705
+
706
+ DESCRIPTION
707
+ Configure and install prerequisites deb packages to run it
708
+
709
+ ALIASES
710
+ $ eggs prerequisites
711
+
712
+ EXAMPLES
713
+ ~$ sudo eggs config
714
+ Configure and install prerequisites deb packages to run it
715
+ ```
495
716
 
496
717
  ## `eggs produce`
497
718
 
@@ -556,7 +777,7 @@ EXAMPLES
556
777
  in /home/eggs/ovarium and you can customize all you need
557
778
  ```
558
779
 
559
- _See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/produce.ts)_
780
+ _See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.48/src/commands/produce.ts)_
560
781
 
561
782
  ## `eggs remove`
562
783
 
@@ -586,7 +807,139 @@ EXAMPLES
586
807
  remove eggs, eggs configurations, packages dependencies
587
808
  ```
588
809
 
589
- _See code: [src/commands/remove.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/remove.ts)_
810
+ _See code: [src/commands/remove.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.48/src/commands/remove.ts)_
811
+
812
+ ## `eggs restore`
813
+
814
+ Restore users, server and datas from luks-eggs-backup
815
+
816
+ ```
817
+ USAGE
818
+ $ eggs restore [--delete <value>] [-f <value>] [-r <value>] [-h] [-v]
819
+
820
+ FLAGS
821
+ -f, --file=<value> file LUKS volume encrypted
822
+ -h, --help Show CLI help.
823
+ -r, --rootdir=<value> rootdir of the installed system, when used from live
824
+ -v, --verbose verbose
825
+ --delete=<value> rsync --delete delete extraneous files from dest dirs
826
+
827
+ DESCRIPTION
828
+ Restore users, server and datas from luks-eggs-backup
829
+
830
+ ALIASES
831
+ $ eggs restore
832
+
833
+ EXAMPLES
834
+ $ sudo eggs restore
835
+ ```
836
+
837
+ ## `eggs skel`
838
+
839
+ update skel from home configuration
840
+
841
+ ```
842
+ USAGE
843
+ $ eggs skel [-h] [-u <value>] [-v]
844
+
845
+ FLAGS
846
+ -h, --help Show CLI help.
847
+ -u, --user=<value> user to be used
848
+ -v, --verbose
849
+
850
+ DESCRIPTION
851
+ update skel from home configuration
852
+
853
+ ALIASES
854
+ $ eggs skel
855
+
856
+ EXAMPLES
857
+ $ eggs skel --user mauro
858
+ desktop configuration of user mauro will get used as default
859
+ ```
860
+
861
+ ## `eggs spawn`
862
+
863
+ produce a live image from your system whithout your data
864
+
865
+ ```
866
+ USAGE
867
+ $ eggs spawn [-p <value>] [--basename <value>] [-b] [-f] [-n] [-m] [-v] [-y] [-s] [-h] [--theme <value>]
868
+ [--addons <value>] [--release]
869
+
870
+ FLAGS
871
+ -b, --backup backup mode
872
+ -f, --fast fast compression
873
+ -h, --help Show CLI help.
874
+ -m, --max max compression
875
+ -n, --normal normal compression
876
+ -p, --prefix=<value> prefix
877
+ -s, --script script mode. Generate scripts to manage iso build
878
+ -v, --verbose verbose
879
+ -y, --yolk -y force yolk renew
880
+ --addons=<value>... addons to be used: adapt, ichoice, pve, rsupport
881
+ --basename=<value> basename
882
+ --release release: configure GUI installer to remove eggs and calamares after installation
883
+ --theme=<value> theme for livecd, calamares branding and partitions
884
+
885
+ DESCRIPTION
886
+ produce a live image from your system whithout your data
887
+
888
+ ALIASES
889
+ $ eggs spawn
890
+ $ eggs lay
891
+
892
+ EXAMPLES
893
+ $ sudo eggs produce
894
+ produce an ISO called [hostname]-[arch]-YYYY-MM-DD_HHMM.iso, compressed xz (standard compression).
895
+ If hostname=ugo and arch=i386 ugo-x86-2020-08-25_1215.iso
896
+
897
+ $ sudo eggs produce -v
898
+ same as previuos, but with --verbose output
899
+
900
+ $ sudo eggs produce -vf
901
+ same as previuos, compression zstd, lz4 or gzip (depend from system capability)
902
+
903
+ $ sudo eggs produce -vm
904
+ same as previuos, compression xz -Xbcj x86 (max compression, about 10%
905
+ more compressed)
906
+
907
+ $ sudo eggs produce -vf --basename leo --theme debian --addons adapt
908
+ produce an ISO called leo-i386-2020-08-25_1215.iso compression fast,
909
+ using Debian theme and link to adapt
910
+
911
+ $ sudo eggs produce -v --basename leo --theme debian --addons rsupport
912
+ produce an ISO called leo-i386-2020-08-25_1215.iso compression xz,
913
+ using Debian theme and link to dwagent
914
+
915
+ $ sudo eggs produce -v --basename leo --rsupport
916
+ produce an ISO called leo-i386-2020-08-25_1215.iso compression xz, using eggs
917
+ theme and link to dwagent
918
+
919
+ $ sudo eggs produce -vs --basename leo --rsupport
920
+ produce scripts to build an ISO as the previus example. Scripts can be found
921
+ in /home/eggs/ovarium and you can customize all you need
922
+ ```
923
+
924
+ ## `eggs stat`
925
+
926
+ get statistics from sourceforge
927
+
928
+ ```
929
+ USAGE
930
+ $ eggs stat [-h] [-m] [-y]
931
+
932
+ FLAGS
933
+ -h, --help Show CLI help.
934
+ -m, --month current month
935
+ -y, --year current year
936
+
937
+ DESCRIPTION
938
+ get statistics from sourceforge
939
+
940
+ ALIASES
941
+ $ eggs stat
942
+ ```
590
943
 
591
944
  ## `eggs syncfrom`
592
945
 
@@ -613,7 +966,7 @@ EXAMPLES
613
966
  $ sudo eggs restore
614
967
  ```
615
968
 
616
- _See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/syncfrom.ts)_
969
+ _See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.48/src/commands/syncfrom.ts)_
617
970
 
618
971
  ## `eggs syncto`
619
972
 
@@ -639,7 +992,7 @@ EXAMPLES
639
992
  $ sudo eggs syncto
640
993
  ```
641
994
 
642
- _See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/syncto.ts)_
995
+ _See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.48/src/commands/syncto.ts)_
643
996
 
644
997
  ## `eggs tools clean`
645
998
 
@@ -762,7 +1115,7 @@ EXAMPLES
762
1115
  update/upgrade the penguin's eggs tool
763
1116
  ```
764
1117
 
765
- _See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.35/src/commands/update.ts)_
1118
+ _See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.0.48/src/commands/update.ts)_
766
1119
 
767
1120
  ## `eggs version`
768
1121
 
@@ -772,6 +1125,78 @@ USAGE
772
1125
  ```
773
1126
 
774
1127
  _See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v1.0.4/src/commands/version.ts)_
1128
+
1129
+ ## `eggs wardrobe ironing`
1130
+
1131
+ ironing costumes: sorting packages, firmwares and so on
1132
+
1133
+ ```
1134
+ USAGE
1135
+ $ eggs wardrobe ironing [-c <value>] [-w <value>] [-v] [-h]
1136
+
1137
+ FLAGS
1138
+ -c, --costume=<value> costume
1139
+ -h, --help Show CLI help.
1140
+ -v, --verbose
1141
+ -w, --wardrobe=<value> wardrobe
1142
+
1143
+ DESCRIPTION
1144
+ ironing costumes: sorting packages, firmwares and so on
1145
+ ```
1146
+
1147
+ ## `eggs wardrobe list`
1148
+
1149
+ list, wear costumes
1150
+
1151
+ ```
1152
+ USAGE
1153
+ $ eggs wardrobe list [-w <value>] [-v] [-h]
1154
+
1155
+ FLAGS
1156
+ -h, --help Show CLI help.
1157
+ -v, --verbose
1158
+ -w, --wardrobe=<value> wardrobe
1159
+
1160
+ DESCRIPTION
1161
+ list, wear costumes
1162
+ ```
1163
+
1164
+ ## `eggs wardrobe show`
1165
+
1166
+ show costumes
1167
+
1168
+ ```
1169
+ USAGE
1170
+ $ eggs wardrobe show [-w <value>] [-c <value>] [-j] [-v] [-h]
1171
+
1172
+ FLAGS
1173
+ -c, --costume=<value> costume
1174
+ -h, --help Show CLI help.
1175
+ -j, --json output JSON
1176
+ -v, --verbose
1177
+ -w, --wardrobe=<value> wardrobe
1178
+
1179
+ DESCRIPTION
1180
+ show costumes
1181
+ ```
1182
+
1183
+ ## `eggs wardrobe wear`
1184
+
1185
+ wear costume
1186
+
1187
+ ```
1188
+ USAGE
1189
+ $ eggs wardrobe wear [-c <value>] [-w <value>] [-v] [-h]
1190
+
1191
+ FLAGS
1192
+ -c, --costume=<value> Costume
1193
+ -h, --help Show CLI help.
1194
+ -v, --verbose
1195
+ -w, --wardrobe=<value> wardrobe
1196
+
1197
+ DESCRIPTION
1198
+ wear costume
1199
+ ```
775
1200
  <!-- commandsstop -->
776
1201
 
777
1202
  # Terminal samples
@@ -42,7 +42,7 @@ efiBootMgr: "efibootmgr"
42
42
  # setting the option here, keep in mind that the name is sanitized
43
43
  # (problematic characters, see above, are replaced).
44
44
  #
45
- # efiBootloaderId: "dirname"
45
+ #efiBootloaderId: "dirname"
46
46
 
47
47
  # Optionally install a copy of the GRUB EFI bootloader as the EFI
48
48
  # fallback loader (either bootx32.efi or bootx64.efi depending on
@@ -51,3 +51,5 @@ efiBootMgr: "efibootmgr"
51
51
  # to add another module to optionally install the fallback on those
52
52
  # boards that need it.
53
53
  installEFIFallback: false
54
+
55
+
package/conf/eggs.yaml CHANGED
@@ -74,18 +74,25 @@ compression: 'xz'
74
74
  # default true
75
75
  ssh_pass: true
76
76
 
77
+
78
+
77
79
  # timezone
78
- # default Europe/Rome
79
80
  timezone: Europe/Rome
80
81
 
81
82
  # locales to be builded
82
83
  locales:
83
- - en_US.UTF-8
84
84
  - it_IT.UTF-8
85
85
 
86
86
  # default locales
87
87
  locales_default: it_IT.UTF-8
88
88
 
89
+ # keyboard
90
+ keyboard:
91
+ XkbModel: "pc105"
92
+ XkbLayout: "it"
93
+ XkbVariant: ""
94
+ XkbOptions: ""
95
+
89
96
  ##
90
97
  # The following fields are actually not used in eggs
91
98
  pmount_fixed: false
@@ -8,10 +8,10 @@
8
8
  Object.defineProperty(exports, "__esModule", { value: true });
9
9
  const tslib_1 = require("tslib");
10
10
  const fs = require("fs");
11
- const pacman_1 = (0, tslib_1.__importDefault)(require("../classes/pacman"));
12
- const utils_1 = (0, tslib_1.__importDefault)(require("./utils"));
13
- const axios_1 = (0, tslib_1.__importDefault)(require("axios"));
14
- const node_https_1 = (0, tslib_1.__importDefault)(require("node:https"));
11
+ const pacman_1 = tslib_1.__importDefault(require("../classes/pacman"));
12
+ const utils_1 = tslib_1.__importDefault(require("./utils"));
13
+ const axios_1 = tslib_1.__importDefault(require("axios"));
14
+ const node_https_1 = tslib_1.__importDefault(require("node:https"));
15
15
  const agent = new node_https_1.default.Agent({
16
16
  rejectUnauthorized: false
17
17
  });
@@ -8,8 +8,8 @@
8
8
  */
9
9
  Object.defineProperty(exports, "__esModule", { value: true });
10
10
  const tslib_1 = require("tslib");
11
- const node_fs_1 = (0, tslib_1.__importDefault)(require("node:fs"));
12
- const utils_1 = (0, tslib_1.__importDefault)(require("./utils"));
11
+ const node_fs_1 = tslib_1.__importDefault(require("node:fs"));
12
+ const utils_1 = tslib_1.__importDefault(require("./utils"));
13
13
  // libraries
14
14
  const utils_2 = require("../lib/utils");
15
15
  /**
@@ -4,7 +4,7 @@ const tslib_1 = require("tslib");
4
4
  /**
5
5
  * test i compressori disponibili
6
6
  */
7
- const shelljs_1 = (0, tslib_1.__importDefault)(require("shelljs"));
7
+ const shelljs_1 = tslib_1.__importDefault(require("shelljs"));
8
8
  class Compressors {
9
9
  constructor() {
10
10
  this.isEnabled = {