penguins-eggs 9.1.29 → 9.1.34

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 (99) hide show
  1. package/README.md +59 -18
  2. package/conf/distros/buster/calamares/modules/locale.yml +3 -3
  3. package/conf/distros/focal/calamares/modules/before_bootloader_context.yml +6 -6
  4. package/conf/distros/focal/calamares/modules/unpackfs.yml +3 -2
  5. package/conf/distros/focal/calamares/modules/users.yml +37 -17
  6. package/conf/distros/rolling/calamares/modules/packages.yml +1 -0
  7. package/conf/eggs.yaml +2 -2
  8. package/lib/classes/bleach.js +8 -1
  9. package/lib/classes/compressors.d.ts +7 -0
  10. package/lib/classes/compressors.js +38 -1
  11. package/lib/classes/daddy.js +6 -29
  12. package/lib/classes/distro.js +15 -6
  13. package/lib/classes/incubation/fisherman-helper/packages.js +8 -5
  14. package/lib/classes/keyboards.d.ts +10 -12
  15. package/lib/classes/keyboards.js +19 -23
  16. package/lib/classes/locales.js +15 -10
  17. package/lib/classes/ovary.js +9 -4
  18. package/lib/classes/utils.js +19 -6
  19. package/lib/classes/xdg.js +4 -3
  20. package/lib/classes/yolk.js +1 -1
  21. package/lib/commands/{install.d.ts → krill.d.ts} +1 -0
  22. package/lib/commands/{install.js → krill.js} +2 -2
  23. package/lib/commands/produce.js +8 -30
  24. package/lib/{classes/krill_prepare.d.ts → krill/krill-prepare.d.ts} +9 -2
  25. package/lib/{classes/krill_prepare.js → krill/krill-prepare.js} +62 -12
  26. package/lib/krill/krill-sequence.d.ts +148 -0
  27. package/lib/krill/krill-sequence.js +533 -0
  28. package/lib/krill/modules/add-user.d.ts +15 -0
  29. package/lib/krill/modules/add-user.js +41 -0
  30. package/lib/krill/modules/bootloader-config-arch.d.ts +9 -0
  31. package/lib/krill/modules/bootloader-config-arch.js +13 -0
  32. package/lib/krill/modules/bootloader-config-ubuntu.d.ts +9 -0
  33. package/lib/krill/modules/bootloader-config-ubuntu.js +93 -0
  34. package/lib/krill/modules/bootloader-config.d.ts +9 -0
  35. package/lib/krill/modules/bootloader-config.js +23 -0
  36. package/lib/krill/modules/bootloader.d.ts +10 -0
  37. package/lib/krill/modules/bootloader.js +17 -0
  38. package/lib/krill/modules/change-password.d.ts +10 -0
  39. package/lib/krill/modules/change-password.js +16 -0
  40. package/lib/krill/modules/del-live-user.d.ts +9 -0
  41. package/lib/krill/modules/del-live-user.js +37 -0
  42. package/lib/krill/modules/fstab.d.ts +9 -0
  43. package/lib/krill/modules/fstab.js +93 -0
  44. package/lib/krill/modules/grubcfg.d.ts +12 -0
  45. package/lib/krill/modules/grubcfg.js +33 -0
  46. package/lib/krill/modules/hostname.d.ts +8 -0
  47. package/lib/krill/modules/hostname.js +13 -0
  48. package/lib/krill/modules/hosts.d.ts +9 -0
  49. package/lib/krill/modules/hosts.js +30 -0
  50. package/lib/krill/modules/initramfs-cfg.d.ts +9 -0
  51. package/lib/krill/modules/initramfs-cfg.js +29 -0
  52. package/lib/krill/modules/initramfs.d.ts +8 -0
  53. package/lib/krill/modules/initramfs.js +30 -0
  54. package/lib/krill/modules/locale.d.ts +8 -0
  55. package/lib/krill/modules/locale.js +47 -0
  56. package/lib/krill/modules/l/303/262cale-cfg.d.ts +5 -0
  57. package/lib/krill/modules/l/303/262cale-cfg.js +58 -0
  58. package/lib/krill/modules/machine-id.d.ts +10 -0
  59. package/lib/krill/modules/machine-id.js +21 -0
  60. package/lib/krill/modules/mkfs.d.ts +8 -0
  61. package/lib/krill/modules/mkfs.js +33 -0
  62. package/lib/krill/modules/mount-fs.d.ts +12 -0
  63. package/lib/krill/modules/mount-fs.js +63 -0
  64. package/lib/krill/modules/mount-vfs.d.ts +12 -0
  65. package/lib/krill/modules/mount-vfs.js +40 -0
  66. package/lib/krill/modules/network-cfg.d.ts +14 -0
  67. package/lib/krill/modules/network-cfg.js +49 -0
  68. package/lib/krill/modules/partitions.d.ts +15 -0
  69. package/lib/krill/modules/partitions.js +307 -0
  70. package/lib/krill/modules/remove-installer-link.d.ts +8 -0
  71. package/lib/krill/modules/remove-installer-link.js +34 -0
  72. package/lib/krill/modules/set-keyboard.d.ts +5 -0
  73. package/lib/krill/modules/set-keyboard.js +50 -0
  74. package/lib/krill/modules/set-timezone.d.ts +9 -0
  75. package/lib/krill/modules/set-timezone.js +21 -0
  76. package/lib/krill/modules/umount.d.ts +9 -0
  77. package/lib/krill/modules/umount.js +26 -0
  78. package/lib/krill/modules/unpackfs.d.ts +8 -0
  79. package/lib/krill/modules/unpackfs.js +17 -0
  80. package/lib/lib/cli-autologin.js +3 -3
  81. package/lib/lib/dependencies.js +4 -13
  82. package/lib/lib/select_keyboard_variant.js +1 -0
  83. package/manpages/doc/man/eggs.html +122 -90
  84. package/mkinitcpio/README.md +16 -0
  85. package/mkinitcpio/archlinux/mkinitcpio-install.conf +5 -0
  86. package/mkinitcpio/archlinux/mkinitcpio-produce.conf +13 -0
  87. package/mkinitcpio/garuda/README.md +29 -0
  88. package/mkinitcpio/manjaro/README.md +31 -0
  89. package/mkinitcpio/manjaro/mkinitcpio-install.conf +7 -0
  90. package/mkinitcpio/manjaro/mkinitcpio-produce.conf +7 -0
  91. package/package.json +14 -17
  92. package/scripts/_eggs +13 -13
  93. package/scripts/eggs.bash +2 -2
  94. package/scripts/mom-cli.sh +8 -8
  95. package/lib/classes/i18n.d.ts +0 -34
  96. package/lib/classes/i18n.js +0 -126
  97. package/lib/classes/krill_install.d.ts +0 -227
  98. package/lib/classes/krill_install.js +0 -1370
  99. package/oclif.manifest.json +0 -1
package/README.md CHANGED
@@ -132,7 +132,7 @@ $ npm install -g penguins-eggs
132
132
  $ eggs COMMAND
133
133
  running command...
134
134
  $ eggs (--version|-v)
135
- penguins-eggs/9.1.29 linux-x64 node-v16.15.0
135
+ penguins-eggs/9.1.34 linux-x64 node-v16.15.1
136
136
  $ eggs --help [COMMAND]
137
137
  USAGE
138
138
  $ eggs COMMAND
@@ -155,6 +155,7 @@ USAGE
155
155
  * [`eggs info`](#eggs-info)
156
156
  * [`eggs install`](#eggs-install)
157
157
  * [`eggs kill`](#eggs-kill)
158
+ * [`eggs krill`](#eggs-krill)
158
159
  * [`eggs mom`](#eggs-mom)
159
160
  * [`eggs produce`](#eggs-produce)
160
161
  * [`eggs remove`](#eggs-remove)
@@ -188,7 +189,7 @@ DESCRIPTION
188
189
  adapt monitor resolution for VM only
189
190
  ```
190
191
 
191
- _See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.29/src/commands/adapt.ts)_
192
+ _See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.34/src/commands/adapt.ts)_
192
193
 
193
194
  ## `eggs analyze`
194
195
 
@@ -209,7 +210,7 @@ EXAMPLES
209
210
  $ sudo eggs analyze
210
211
  ```
211
212
 
212
- _See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.29/src/commands/analyze.ts)_
213
+ _See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.34/src/commands/analyze.ts)_
213
214
 
214
215
  ## `eggs autocomplete [SHELL]`
215
216
 
@@ -267,7 +268,7 @@ EXAMPLES
267
268
  install calamares and create it's configuration's files
268
269
  ```
269
270
 
270
- _See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.29/src/commands/calamares.ts)_
271
+ _See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.34/src/commands/calamares.ts)_
271
272
 
272
273
  ## `eggs config`
273
274
 
@@ -291,7 +292,7 @@ EXAMPLES
291
292
  Configure and install prerequisites deb packages to run it
292
293
  ```
293
294
 
294
- _See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.29/src/commands/config.ts)_
295
+ _See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.34/src/commands/config.ts)_
295
296
 
296
297
  ## `eggs dad`
297
298
 
@@ -311,7 +312,7 @@ DESCRIPTION
311
312
  ask help from daddy - configuration helper
312
313
  ```
313
314
 
314
- _See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.29/src/commands/dad.ts)_
315
+ _See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.34/src/commands/dad.ts)_
315
316
 
316
317
  ## `eggs export deb`
317
318
 
@@ -402,7 +403,7 @@ DESCRIPTION
402
403
  informations about eggs configuration
403
404
  ```
404
405
 
405
- _See code: [src/commands/info.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.29/src/commands/info.ts)_
406
+ _See code: [src/commands/info.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.34/src/commands/info.ts)_
406
407
 
407
408
  ## `eggs install`
408
409
 
@@ -422,13 +423,14 @@ FLAGS
422
423
  DESCRIPTION
423
424
  command-line system installer - the egg became a penguin!
424
425
 
426
+ ALIASES
427
+ $ eggs install
428
+
425
429
  EXAMPLES
426
430
  $ eggs install
427
431
  Install the system using GUI or CLI installer
428
432
  ```
429
433
 
430
- _See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.29/src/commands/install.ts)_
431
-
432
434
  ## `eggs kill`
433
435
 
434
436
  kill the eggs/free the nest
@@ -449,7 +451,35 @@ EXAMPLES
449
451
  kill the eggs/free the nest
450
452
  ```
451
453
 
452
- _See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.29/src/commands/kill.ts)_
454
+ _See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.34/src/commands/kill.ts)_
455
+
456
+ ## `eggs krill`
457
+
458
+ command-line system installer - the egg became a penguin!
459
+
460
+ ```
461
+ USAGE
462
+ $ eggs krill [-c] [-k] [-p] [-h] [-v]
463
+
464
+ FLAGS
465
+ -c, --cli force use CLI installer
466
+ -h, --help Show CLI help.
467
+ -k, --crypted crypted CLI installation
468
+ -p, --pve Proxmox VE install
469
+ -v, --verbose verbose
470
+
471
+ DESCRIPTION
472
+ command-line system installer - the egg became a penguin!
473
+
474
+ ALIASES
475
+ $ eggs install
476
+
477
+ EXAMPLES
478
+ $ eggs install
479
+ Install the system using GUI or CLI installer
480
+ ```
481
+
482
+ _See code: [src/commands/krill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.34/src/commands/krill.ts)_
453
483
 
454
484
  ## `eggs mom`
455
485
 
@@ -466,7 +496,7 @@ DESCRIPTION
466
496
  ask for mommy - gui helper
467
497
  ```
468
498
 
469
- _See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.29/src/commands/mom.ts)_
499
+ _See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.34/src/commands/mom.ts)_
470
500
 
471
501
  ## `eggs produce`
472
502
 
@@ -527,7 +557,7 @@ EXAMPLES
527
557
  in /home/eggs/ovarium and you can customize all you need
528
558
  ```
529
559
 
530
- _See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.29/src/commands/produce.ts)_
560
+ _See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.34/src/commands/produce.ts)_
531
561
 
532
562
  ## `eggs remove`
533
563
 
@@ -557,7 +587,7 @@ EXAMPLES
557
587
  remove eggs, eggs configurations, packages dependencies
558
588
  ```
559
589
 
560
- _See code: [src/commands/remove.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.29/src/commands/remove.ts)_
590
+ _See code: [src/commands/remove.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.34/src/commands/remove.ts)_
561
591
 
562
592
  ## `eggs syncfrom`
563
593
 
@@ -581,7 +611,7 @@ EXAMPLES
581
611
  $ sudo eggs restore
582
612
  ```
583
613
 
584
- _See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.29/src/commands/syncfrom.ts)_
614
+ _See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.34/src/commands/syncfrom.ts)_
585
615
 
586
616
  ## `eggs syncto`
587
617
 
@@ -604,7 +634,7 @@ EXAMPLES
604
634
  $ sudo eggs syncto
605
635
  ```
606
636
 
607
- _See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.29/src/commands/syncto.ts)_
637
+ _See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.34/src/commands/syncto.ts)_
608
638
 
609
639
  ## `eggs tools clean`
610
640
 
@@ -699,16 +729,27 @@ EXAMPLES
699
729
  update/upgrade the penguin's eggs tool
700
730
  ```
701
731
 
702
- _See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.29/src/commands/update.ts)_
732
+ _See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.1.34/src/commands/update.ts)_
703
733
 
704
734
  ## `eggs version`
705
735
 
706
736
  ```
707
737
  USAGE
708
- $ eggs version
738
+ $ eggs version [--json] [--verbose]
739
+
740
+ FLAGS
741
+ --verbose Show additional information about the CLI.
742
+
743
+ GLOBAL FLAGS
744
+ --json Format output as json.
745
+
746
+ FLAG DESCRIPTIONS
747
+ --verbose Show additional information about the CLI.
748
+
749
+ Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.
709
750
  ```
710
751
 
711
- _See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v1.0.4/src/commands/version.ts)_
752
+ _See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v1.1.1/src/commands/version.ts)_
712
753
 
713
754
  ## `eggs wardrobe get [REPO]`
714
755
 
@@ -18,13 +18,13 @@ zone: "Rome"
18
18
  # System locales are detected in the following order:
19
19
  #
20
20
  # - /usr/share/i18n/SUPPORTED
21
- # - localeGenPath (defaults to /etc/locale.gen if not set)
21
+ # - localeGenPath (defaults to /etc/ if not set)
22
22
  # - 'locale -a' output
23
23
  #
24
24
  # Enable only when your Distribution is using an
25
- # custom path for locale.gen
25
+ # custom path for
26
26
  #
27
- #localeGenPath: "PATH_TO/locale.gen"
27
+ #localeGenPath: "PATH_TO/"
28
28
 
29
29
  # GeoIP based Language settings: Leave commented out to disable GeoIP.
30
30
  #
@@ -7,13 +7,13 @@
7
7
  firmwareType:
8
8
  bios: "-/bin/true"
9
9
  "*":
10
- - command: apt-cdrom add -m -d=/media/cdrom/
11
- timeout: 10
12
- - command: sed -i '/deb http/d' /etc/apt/sources.list
13
- timeout: 10
10
+ #- command: apt-cdrom add -m -d=/media/cdrom/
11
+ # timeout: 10
12
+ #- command: sed -i '/deb http/d' /etc/apt/sources.list
13
+ # timeout: 10
14
14
  - command: apt-get update
15
15
  timeout: 120
16
- - command: apt install -y --no-upgrade -o Acquire::gpgv::Options::=--ignore-time-conflict grub-efi-$(if grep -q 64 /sys/firmware/efi/fw_platform_size; then echo amd64-signed; else echo ia32; fi)
16
+ - command: apt-get install -y --no-upgrade -o Acquire::gpgv::Options::=--ignore-time-conflict grub-efi-$(if grep -q 64 /sys/firmware/efi/fw_platform_size; then echo amd64-signed; else echo ia32; fi)
17
17
  timeout: 300
18
- - command: apt install -y --no-upgrade -o Acquire::gpgv::Options::=--ignore-time-conflict shim-signed
18
+ - command: apt-get install -y --no-upgrade -o Acquire::gpgv::Options::=--ignore-time-conflict shim-signed
19
19
  timeout: 300
@@ -1,6 +1,7 @@
1
- # Ubuntu jammy 22.04
1
+ # Ubuntu jammy 22.04 - correct
2
2
  ---
3
+
3
4
  unpack:
4
- - source: "/cdrom/casper/filesystem.squashfs"
5
+ - source: {{source}}
5
6
  sourcefs: "squashfs"
6
7
  destination: ""
@@ -1,21 +1,41 @@
1
- # Ubuntu jammy 22.04
1
+ # Ubuntu jammy 22.04 - take values from buster
2
2
  ---
3
- doAutologin: false
4
- setRootPassword: false
5
- sudoersGroup: sudo
3
+
4
+ userGroup: users
6
5
  defaultGroups:
7
- - adm
8
- - cdrom
9
- - dip
10
- - lpadmin
11
- - plugdev
12
- - name: sambashare
13
- must_exist: false
14
- system: true
15
- - sudo
16
- passwordRequirements:
17
- minLength: 0
18
- maxLength: 0
6
+ - cdrom
7
+ - floppy
8
+ - sudo
9
+ - audio
10
+ - dip
11
+ - video
12
+ - plugdev
13
+ - netdev
14
+ - lpadmin
15
+ - scanner
16
+ - bluetooth
17
+ autologinGroup: autologin
18
+ sudoersGroup: sudo
19
+ setRootPassword: false
20
+ # doReusePassword: false
21
+
22
+
23
+ # doAutologin: false
24
+ # setRootPassword: false
25
+ # sudoersGroup: sudo
26
+ # defaultGroups:
27
+ # - adm
28
+ # - cdrom
29
+ # - dip
30
+ # - lpadmin
31
+ # - plugdev
32
+ # - name: sambashare
33
+ # - must_exist: false
34
+ # system: true
35
+ # - sudo
36
+ # passwordRequirements:
37
+ # minLength: 0
38
+ # maxLength: 0
19
39
  # Explicitly set the shell instead of deferring to Calamares. We have a platform
20
40
  # expectation derived from Ubuntu here.
21
- userShell: /bin/bash
41
+ # userShell: /bin/bash
@@ -6,3 +6,4 @@ backend: pamac
6
6
  operations:
7
7
  {{remove}}
8
8
  {{try_install}}
9
+
package/conf/eggs.yaml CHANGED
@@ -63,8 +63,8 @@ make_isohybrid: true
63
63
 
64
64
  # Compression algorithm
65
65
  # Allowed values are, in order of speed-size tradeoff: lz4, lzo, gzip, xz
66
- # default xz
67
- compression: 'xz'
66
+ # default -Xcompression-level 20
67
+ compression: '-Xcompression-level 20'
68
68
 
69
69
  # Allow password login to ssh for users (not root).
70
70
  # If ssh_pass=true, then PasswordAuthentication will be set to true
@@ -12,6 +12,7 @@ const node_fs_1 = tslib_1.__importDefault(require("node:fs"));
12
12
  const utils_1 = tslib_1.__importDefault(require("./utils"));
13
13
  // libraries
14
14
  const utils_2 = require("../lib/utils");
15
+ const distro_1 = tslib_1.__importDefault(require("./distro"));
15
16
  /**
16
17
  * Bleach:
17
18
  */
@@ -21,7 +22,13 @@ class Bleach {
21
22
  * @param verbose
22
23
  */
23
24
  async clean(verbose = false) {
24
- await this.cleanApt(verbose);
25
+ const distro = new distro_1.default();
26
+ if (distro.distroLike === 'Debian' || distro.distroLike === 'Devuan' || (distro.distroLike === 'Ubuntu')) {
27
+ await this.cleanApt(verbose);
28
+ }
29
+ else if (distro.distroLike === 'Arch') {
30
+ await (0, utils_2.exec)('paccache -ruk0');
31
+ }
25
32
  await this.cleanHistory(verbose);
26
33
  await this.cleanJournal(verbose);
27
34
  await this.cleanSystemCache(verbose);
@@ -11,6 +11,13 @@ export default class Compressors {
11
11
  source: string;
12
12
  dest: string;
13
13
  populate(): Promise<void>;
14
+ fast(): string;
15
+ normal(): string;
16
+ /**
17
+ * max
18
+ * @returns
19
+ */
20
+ max(): string;
14
21
  private prepareCheck;
15
22
  private removeCheck;
16
23
  private check;
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  /**
5
- * test i compressori disponibili
5
+ * test available compressors
6
6
  */
7
7
  const shelljs_1 = tslib_1.__importDefault(require("shelljs"));
8
8
  class Compressors {
@@ -29,6 +29,43 @@ class Compressors {
29
29
  this.isEnabled.zstd = await this.check('zstd');
30
30
  await this.removeCheck();
31
31
  }
32
+ // fastest
33
+ fast() {
34
+ let comp = 'gzip';
35
+ if (this.isEnabled.zstd) {
36
+ comp = 'zstd -b 256K -Xcompression-level 1';
37
+ }
38
+ else if (this.isEnabled.lz4) {
39
+ comp = 'lz4';
40
+ }
41
+ return comp;
42
+ }
43
+ // normal
44
+ normal() {
45
+ let comp = "xz";
46
+ if (this.isEnabled.zstd) {
47
+ comp = 'zstd -b 256K -Xcompression-level 20';
48
+ }
49
+ else {
50
+ comp = 'xz -b 256K';
51
+ }
52
+ return comp;
53
+ }
54
+ /**
55
+ * max
56
+ * @returns
57
+ */
58
+ max() {
59
+ let comp = 'xz -b 256K -Xbcj ';
60
+ const filter = 'x86';
61
+ if (process.arch === 'arm') {
62
+ const filter = 'ARM'; // to check
63
+ }
64
+ else if (process.arch === 'arm64') {
65
+ const filter = 'ARM64'; // to check
66
+ }
67
+ return comp + filter;
68
+ }
32
69
  async prepareCheck() {
33
70
  shelljs_1.default.exec('rm -rf ' + this.source, { silent: true });
34
71
  shelljs_1.default.exec('mkdir ' + this.source, { silent: true });
@@ -60,39 +60,16 @@ class Daddy {
60
60
  config.root_passwd = newConf.root_passwd;
61
61
  config.theme = newConf.theme;
62
62
  /**
63
- * Analisi del tipo di compressione del kernel
64
- *
63
+ * Analisi del tipo di compressione disponibile
65
64
  */
66
65
  const compressors = new compressors_1.default();
67
66
  await compressors.populate();
68
- let fastest = 'gzip';
69
- if (compressors.isEnabled.zstd) {
70
- fastest = 'zstd -Xcompression-level 1 -b 262144';
67
+ config.compression = compressors.normal();
68
+ if (newConf.compression === 'fast') {
69
+ config.compression = compressors.fast();
71
70
  }
72
- else if (compressors.isEnabled.lz4) {
73
- fastest = 'lz4';
74
- }
75
- switch (newConf.compression) {
76
- case 'fast': {
77
- config.compression = fastest;
78
- break;
79
- }
80
- case 'normal': {
81
- config.compression = 'xz';
82
- break;
83
- }
84
- case 'max': {
85
- const filter = 'x86';
86
- if (process.arch === 'arm') {
87
- const filter = 'ARM'; // to check
88
- }
89
- else if (process.arch === 'arm64') {
90
- const filter = 'ARM64'; // to check
91
- }
92
- config.compression = 'xz -Xbcj ' + filter;
93
- break;
94
- }
95
- // No default
71
+ else if (newConf.compression === 'max') {
72
+ config.compression = compressors.max();
96
73
  }
97
74
  await this.settings.save(config);
98
75
  let flags = '';
@@ -245,10 +245,11 @@ class Distro {
245
245
  case 'ulyana':
246
246
  case 'ulyssa':
247
247
  case 'uma':
248
- case 'una': {
248
+ case 'una':
249
+ case 'vanessa': {
249
250
  // LinuxMint 20.x
250
251
  this.distroLike = 'Ubuntu';
251
- this.codenameLikeId = 'focal';
252
+ this.codenameLikeId = 'jammy';
252
253
  break;
253
254
  }
254
255
  case 'debbie': {
@@ -291,9 +292,16 @@ class Distro {
291
292
  // Netrunner
292
293
  this.distroLike = 'Debian';
293
294
  this.codenameLikeId = 'buster';
294
- /**
295
- * ArchLinux
296
- */
295
+ break;
296
+ }
297
+ /**
298
+ * Arch Linux
299
+ * distroId= "Arch"
300
+ */
301
+ case 'n/a': {
302
+ this.familyId = 'archlinux';
303
+ this.distroLike = 'Arch';
304
+ this.codenameLikeId = 'rolling';
297
305
  break;
298
306
  }
299
307
  /**
@@ -314,7 +322,8 @@ class Distro {
314
322
  /**
315
323
  * Manjaro
316
324
  */
317
- case 'Qonos': {
325
+ case 'Qonos':
326
+ case 'Ruah': {
318
327
  this.familyId = 'archlinux';
319
328
  this.distroLike = 'Arch';
320
329
  this.codenameLikeId = 'rolling';
@@ -12,12 +12,15 @@ const pacman_1 = tslib_1.__importDefault(require("../../pacman"));
12
12
  function remove(distro) {
13
13
  let remove = true;
14
14
  let removePackages = pacman_1.default.packages(remove);
15
- removePackages.push("calamares");
16
- removePackages.push("eggs");
17
15
  if (distro.distroLike === 'Arch') {
18
- removePackages = ["calamares"]; // penguins-eggs, manjaro-tools-iso, arch-install-scripts
16
+ removePackages = ["calamares"];
17
+ removePackages = ["penguins-eggs"];
19
18
  }
20
- const mustRemain = ["coreutils", "cryptsetup", "curl", "dosfstools", "git", "parted", "rsync"];
19
+ else {
20
+ removePackages.push("calamares");
21
+ removePackages.push("eggs");
22
+ }
23
+ const mustRemain = ["coreutils", "cryptsetup", "curl", "dosfstools", "git", "parted", "rsync", "lvm2"];
21
24
  let sorted = [];
22
25
  for (const elem of removePackages) {
23
26
  if (!mustRemain.includes(elem)) {
@@ -51,7 +54,7 @@ function tryInstall(distro) {
51
54
  }
52
55
  // Da localizzare se presenti
53
56
  if (pacman_1.default.packageIsInstalled('hunspell')) {
54
- packages += 'hunspell-$LOCALE\n';
57
+ packages += ' - hunspell-$LOCALE\n';
55
58
  }
56
59
  if (pacman_1.default.packageIsInstalled('libreoffice-base-core')) {
57
60
  packages += ` - libreoffice-l10n-$LOCALE\n`;
@@ -9,37 +9,35 @@ export default class Keyboard {
9
9
  options: string[];
10
10
  constructor();
11
11
  /**
12
- *
13
- * @returns
12
+ * XKBMODEL[]
14
13
  */
15
14
  getModels(): IXkbModel[];
16
15
  /**
17
- * 012345678901234567890123456789
18
- * us English (US)
16
+ * XKBLAYOUT=[]
19
17
  */
20
18
  getLayouts(): IXkbLayout[];
21
19
  /**
22
- *
20
+ * IXkbVariant[]
23
21
  */
24
22
  getVariants(layout: string): IXkbVariant[];
25
23
  /**
26
- *
24
+ * XKBOPTIONS[]
27
25
  */
28
26
  getOptions(): IXkbOption[];
29
27
  /**
30
- *
28
+ * XKBMODEL='pc105'
31
29
  */
32
- getVariant(): Promise<string>;
30
+ getModel(): Promise<string>;
33
31
  /**
34
- *
32
+ * XKBLAYOUT='us'
35
33
  */
36
34
  getLayout(): Promise<string>;
37
35
  /**
38
- *
36
+ * XKBVARIANT=''
39
37
  */
40
- getModel(): Promise<string>;
38
+ getVariant(): Promise<string>;
41
39
  /**
42
- *
40
+ * XKBOPTIONS=''
43
41
  */
44
42
  getOption(): Promise<string>;
45
43
  }