penguins-eggs 9.5.23 → 9.5.25

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 (143) hide show
  1. package/.oclif.manifest.json +1 -1
  2. package/README.md +2 -2
  3. package/dist/classes/bleach.js +4 -3
  4. package/dist/classes/compressors.js +6 -1
  5. package/dist/classes/daddy.js +24 -63
  6. package/dist/classes/distro.js +5 -4
  7. package/dist/classes/family/archlinux.js +17 -22
  8. package/dist/classes/family/debian.js +2 -1
  9. package/dist/classes/family/fedora.js +2 -1
  10. package/dist/classes/family/suse.js +2 -1
  11. package/dist/classes/incubation/distros/bionic.js +4 -2
  12. package/dist/classes/incubation/distros/buster.js +7 -5
  13. package/dist/classes/incubation/distros/focal.js +7 -0
  14. package/dist/classes/incubation/distros/jessie.js +4 -5
  15. package/dist/classes/incubation/distros/rolling.js +5 -1
  16. package/dist/classes/initrd.js +4 -3
  17. package/dist/classes/keyboards.js +7 -0
  18. package/dist/classes/locales.js +7 -0
  19. package/dist/classes/n8.js +2 -1
  20. package/dist/classes/network.js +2 -1
  21. package/dist/classes/ovary.js +7 -4
  22. package/dist/classes/pacman.js +2 -1
  23. package/dist/classes/pve-live.js +2 -2
  24. package/dist/classes/pxe.js +6 -4
  25. package/dist/classes/settings.js +4 -56
  26. package/dist/classes/sources_list.js +4 -3
  27. package/dist/classes/systemctl.js +4 -3
  28. package/dist/classes/tailor.js +7 -6
  29. package/dist/classes/tools.js +2 -1
  30. package/dist/classes/users.js +7 -0
  31. package/dist/classes/utils.js +2 -1
  32. package/dist/classes/xdg.js +2 -1
  33. package/dist/classes/yolk.js +4 -3
  34. package/dist/commands/adapt.js +2 -1
  35. package/dist/commands/analyze.js +2 -1
  36. package/dist/commands/calamares.js +36 -42
  37. package/dist/commands/config.js +2 -1
  38. package/dist/commands/cuckoo.js +7 -3
  39. package/dist/commands/dad.js +2 -1
  40. package/dist/commands/export/deb.js +7 -0
  41. package/dist/commands/export/iso.js +5 -1
  42. package/dist/commands/install.js +4 -3
  43. package/dist/commands/kill.js +1 -0
  44. package/dist/commands/mom.js +2 -1
  45. package/dist/commands/produce.js +2 -1
  46. package/dist/commands/status.js +7 -3
  47. package/dist/commands/syncfrom.js +2 -1
  48. package/dist/commands/syncto.js +2 -1
  49. package/dist/commands/tools/clean.js +2 -1
  50. package/dist/commands/tools/ppa.js +2 -1
  51. package/dist/commands/tools/skel.js +2 -1
  52. package/dist/commands/tools/stat.js +7 -0
  53. package/dist/commands/tools/yolk.js +2 -1
  54. package/dist/commands/update.js +2 -1
  55. package/dist/commands/wardrobe/get.js +4 -3
  56. package/dist/commands/wardrobe/list.js +4 -3
  57. package/dist/commands/wardrobe/show.js +7 -3
  58. package/dist/commands/wardrobe/wear.js +2 -1
  59. package/dist/components/elements/information.js +7 -0
  60. package/dist/components/elements/steps.js +7 -0
  61. package/dist/components/elements/title.js +7 -0
  62. package/dist/components/finished.js +5 -1
  63. package/dist/components/install.js +5 -1
  64. package/dist/components/keyboard.js +5 -1
  65. package/dist/components/location.js +7 -3
  66. package/dist/components/network.js +5 -1
  67. package/dist/components/partitions.js +5 -1
  68. package/dist/components/summary.js +5 -1
  69. package/dist/components/users.js +7 -3
  70. package/dist/components/welcome.js +5 -1
  71. package/dist/interfaces/i-addons.js +0 -5
  72. package/dist/interfaces/i-analyze.js +5 -1
  73. package/dist/interfaces/i-calamares-partition.js +7 -0
  74. package/dist/interfaces/i-devices.js +0 -5
  75. package/dist/interfaces/i-distro.js +7 -0
  76. package/dist/interfaces/i-drive-list.js +5 -1
  77. package/dist/interfaces/i-eggs-config.js +7 -0
  78. package/dist/interfaces/i-exec.js +7 -0
  79. package/dist/interfaces/i-initrd.js +0 -5
  80. package/dist/interfaces/i-install.js +0 -5
  81. package/dist/interfaces/i-krill-config.js +7 -0
  82. package/dist/interfaces/i-packages.js +7 -0
  83. package/dist/interfaces/i-remix.js +7 -0
  84. package/dist/interfaces/i-settings.js +0 -4
  85. package/dist/interfaces/index.js +7 -0
  86. package/dist/krill/krill-prepare.js +9 -7
  87. package/dist/krill/krill-sequence.js +5 -4
  88. package/dist/krill/modules/add-user.js +5 -0
  89. package/dist/krill/modules/bootloader-config-ubuntu.js +0 -3
  90. package/dist/krill/modules/bootloader-config.js +5 -0
  91. package/dist/krill/modules/bootloader.js +5 -0
  92. package/dist/krill/modules/change-password.js +5 -0
  93. package/dist/krill/modules/del-live-user.js +5 -0
  94. package/dist/krill/modules/fstab.js +4 -4
  95. package/dist/krill/modules/grubcfg.js +4 -4
  96. package/dist/krill/modules/hostname.js +4 -4
  97. package/dist/krill/modules/initramfs-cfg.js +4 -4
  98. package/dist/krill/modules/initramfs.js +4 -4
  99. package/dist/krill/modules/locale-cfg.js +4 -4
  100. package/dist/krill/modules/locale.js +4 -4
  101. package/dist/krill/modules/m-keyboard.js +4 -4
  102. package/dist/krill/modules/m-timezone.js +4 -4
  103. package/dist/krill/modules/machine-id.js +4 -4
  104. package/dist/krill/modules/mkfs.js +4 -4
  105. package/dist/krill/modules/mount-fs.js +4 -4
  106. package/dist/krill/modules/mount-vfs.js +4 -4
  107. package/dist/krill/modules/network-cfg.js +4 -4
  108. package/dist/krill/modules/packages.js +4 -4
  109. package/dist/krill/modules/partition.js +4 -4
  110. package/dist/krill/modules/remove-installer-link.js +4 -4
  111. package/dist/krill/modules/umount.js +4 -4
  112. package/dist/krill/modules/unpackfs.js +4 -4
  113. package/dist/lib/cli-autologin.js +7 -0
  114. package/dist/lib/dependencies.js +9 -2
  115. package/dist/lib/get_address.js +7 -0
  116. package/dist/lib/get_dns.js +7 -0
  117. package/dist/lib/get_domain.js +7 -0
  118. package/dist/lib/get_gateway.js +7 -0
  119. package/dist/lib/get_hostname.js +7 -0
  120. package/dist/lib/get_netmask.js +7 -0
  121. package/dist/lib/get_password.js +7 -0
  122. package/dist/lib/get_root_password.js +7 -0
  123. package/dist/lib/get_userfullname.js +7 -0
  124. package/dist/lib/get_username.js +7 -0
  125. package/dist/lib/kill_me_softly.js +7 -0
  126. package/dist/lib/select_address_type.js +5 -1
  127. package/dist/lib/select_filesystem_type.js +7 -0
  128. package/dist/lib/select_installation_device.js +7 -0
  129. package/dist/lib/select_installation_mode.js +7 -0
  130. package/dist/lib/select_interface.js +5 -1
  131. package/dist/lib/select_keyboard_layout.js +3 -1
  132. package/dist/lib/select_keyboard_model.js +5 -3
  133. package/dist/lib/select_keyboard_option.js +3 -1
  134. package/dist/lib/select_keyboard_variant.js +3 -1
  135. package/dist/lib/select_languages.js +5 -1
  136. package/dist/lib/select_regions.js +7 -0
  137. package/dist/lib/select_user_swap_choice.js +7 -0
  138. package/dist/lib/select_zones.js +7 -0
  139. package/dist/lib/utils.js +5 -14
  140. package/manpages/doc/man/eggs.1.gz +0 -0
  141. package/manpages/doc/man/eggs.html +3 -3
  142. package/package.json +1 -1
  143. package/scripts/mom.sh +1 -1
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
- * penguins-eggs-v8
3
+ * penguins-eggs
4
+ * class: pacman.ts
4
5
  * author: Piero Proietti
5
6
  * email: piero.proietti@gmail.com
6
7
  * license: MIT
@@ -1,10 +1,10 @@
1
1
  "use strict";
2
2
  /**
3
- * penguins-eggss
3
+ * penguins-eggs
4
+ * class: pve.ts
4
5
  * author: Piero Proietti
5
6
  * email: piero.proietti@gmail.com
6
7
  * license: MIT
7
- * pve-live
8
8
  */
9
9
  Object.defineProperty(exports, "__esModule", { value: true });
10
10
  const tslib_1 = require("tslib");
@@ -1,11 +1,13 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
2
  /**
5
- * penguins-eggs: pxe.ts
3
+ * penguins-eggs
4
+ * class: pxe.ts
6
5
  * author: Piero Proietti
7
- * mail: piero.proietti@gmail.com
6
+ * email: piero.proietti@gmail.com
7
+ * license: MIT
8
8
  */
9
+ Object.defineProperty(exports, "__esModule", { value: true });
10
+ const tslib_1 = require("tslib");
9
11
  const utils_1 = require("../lib/utils");
10
12
  const distro_1 = tslib_1.__importDefault(require("./distro"));
11
13
  const fs_1 = tslib_1.__importDefault(require("fs"));
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  /**
3
- * penguins-eggs: ovary.ts VERSIONE DEBIAN-LIVE
3
+ * penguins-eggs
4
+ * class: settings.ts
4
5
  * author: Piero Proietti
5
- * mail: piero.proietti@gmail.com
6
- *
6
+ * email: piero.proietti@gmail.com
7
+ * license: MIT
7
8
  */
8
9
  Object.defineProperty(exports, "__esModule", { value: true });
9
10
  const tslib_1 = require("tslib");
@@ -178,58 +179,5 @@ class Settings {
178
179
  this.remix.fullname = name;
179
180
  this.remix.versionName = name.toUpperCase();
180
181
  }
181
- /**
182
- * show NOT USED MORE
183
- */
184
- async show_not_used_more() {
185
- console.log(`application_name: ${this.app.name} ${this.app.version}`);
186
- // console.log(`config_file: ${config_file}`)
187
- console.log(`snapshot_dir: ${this.config.snapshot_dir}`);
188
- if (this.config.snapshot_prefix === '') {
189
- console.log('snapshot_prefix: ' + chalk_1.default.bgYellow('no value') + ' run ' + chalk_1.default.cyan('sudo eggs dad') + ' or edit ' + chalk_1.default.cyan('/etc/penguins-eggs.d/eggs.yaml'));
190
- }
191
- else {
192
- console.log('snapshot_prefix: ' + chalk_1.default.green(this.config.snapshot_prefix));
193
- }
194
- console.log(`snapshot_basename: ${this.config.snapshot_basename}`);
195
- // console.log(`snapshot_excludes: ${this.config.snapshot_excludes}`)
196
- if (node_fs_1.default.existsSync(this.kernel_image)) {
197
- console.log('kernel_image: ' + chalk_1.default.green(this.kernel_image));
198
- }
199
- else {
200
- console.log('kernel_image: ' + chalk_1.default.red(this.kernel_image) + ' not found! Please edit /etc/penguins-eggs.d/eggs.yaml');
201
- }
202
- if (node_fs_1.default.existsSync(this.initrd_image)) {
203
- console.log('initrd_image: ' + chalk_1.default.green(this.initrd_image));
204
- }
205
- else {
206
- console.log('initrd_image: ' + chalk_1.default.red(this.initrd_image) + ' not found! Please edit /etc/penguins-eggs.d/eggs.yaml');
207
- }
208
- console.log(`snapshot_dir: ${this.config.snapshot_dir}`);
209
- // console.log(`efi_work: ${this.efi_work}`)
210
- // console.log(`make_efi: ${this.config.make_efi}`)
211
- // console.log(`make_md5sum: ${this.config.make_md5sum}`)
212
- // console.log(`make_isohybrid: ${this.config.make_isohybrid}`)
213
- console.log(`compression: ${this.config.compression}`);
214
- // console.log(`force_installer: ${this.config.force_installer}`)
215
- console.log(`user_opt: ${this.config.user_opt}`);
216
- console.log(`locales: ${this.config.locales}`);
217
- console.log(`locale default: ${this.config.locales_default}`);
218
- // console.log(`ssh_pass: ${this.config.ssh_pass}`)
219
- if (this.config.make_efi) {
220
- if (!pacman_1.default.isUefi()) {
221
- utils_1.default.error('You choose to create an UEFI image, but miss to install grub-efi-amd64-bin package.');
222
- utils_1.default.error('Please install it before to create an UEFI image:');
223
- utils_1.default.warning('sudo apt install grub-efi-amd64-bin');
224
- this.config.make_efi = false;
225
- }
226
- else if (!pacman_1.default.packageIsInstalled('dosfstools')) {
227
- utils_1.default.error('You choose to create an UEFI image, but miss to install dosfstools package.');
228
- utils_1.default.error('Please install it before to create an UEFI image:');
229
- utils_1.default.warning('sudo apt install dosfstools');
230
- this.config.make_efi = false;
231
- }
232
- }
233
- }
234
182
  }
235
183
  exports.default = Settings;
@@ -1,9 +1,10 @@
1
1
  "use strict";
2
2
  /**
3
- * penguins-eggs: tailor.ts
3
+ * penguins-eggs
4
+ * class: sources_list.ts
4
5
  * author: Piero Proietti
5
- * mail: piero.proietti@gmail.com
6
- *
6
+ * email: piero.proietti@gmail.com
7
+ * license: MIT
7
8
  */
8
9
  Object.defineProperty(exports, "__esModule", { value: true });
9
10
  const tslib_1 = require("tslib");
@@ -1,11 +1,12 @@
1
1
  "use strict";
2
2
  /**
3
- * penguins-eggs-v7
3
+ /**
4
+ * penguins-eggs
5
+ * class: systemctl.ts
4
6
  * author: Piero Proietti
5
7
  * email: piero.proietti@gmail.com
6
- * license: MIT
7
- * gestione systemd
8
8
  * Presa da https://github.com/VolantisDev/node-systemctl
9
+ * license: MIT
9
10
  */
10
11
  Object.defineProperty(exports, "__esModule", { value: true });
11
12
  const tslib_1 = require("tslib");
@@ -1,12 +1,13 @@
1
1
  "use strict";
2
+ /**
3
+ * penguins-eggs
4
+ * class: tailor.ts
5
+ * author: Piero Proietti
6
+ * email: piero.proietti@gmail.com
7
+ * license: MIT
8
+ */
2
9
  Object.defineProperty(exports, "__esModule", { value: true });
3
10
  const tslib_1 = require("tslib");
4
- /**
5
- * penguins-eggs: tailor.ts
6
- * author: Piero Proietti
7
- * mail: piero.proietti@gmail.com
8
- *
9
- */
10
11
  const chalk_1 = tslib_1.__importDefault(require("chalk"));
11
12
  const utils_1 = tslib_1.__importDefault(require("./utils"));
12
13
  const utils_2 = require("../lib/utils");
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
- * tools
3
+ * penguins-eggs
4
+ * class: tools.ts
4
5
  * author: Piero Proietti
5
6
  * email: piero.proietti@gmail.com
6
7
  * license: MIT
@@ -1,4 +1,11 @@
1
1
  "use strict";
2
+ /**
3
+ * penguins-eggs
4
+ * class: users.ts
5
+ * author: Piero Proietti
6
+ * email: piero.proietti@gmail.com
7
+ * license: MIT
8
+ */
2
9
  Object.defineProperty(exports, "__esModule", { value: true });
3
10
  const tslib_1 = require("tslib");
4
11
  const fs_1 = tslib_1.__importDefault(require("fs"));
@@ -1,7 +1,8 @@
1
1
  "use strict";
2
2
  /* eslint-disable valid-jsdoc */
3
3
  /**
4
- * penguins-eggs-v7
4
+ * penguins-eggs
5
+ * class: utils.tsx
5
6
  * author: Piero Proietti
6
7
  * email: piero.proietti@gmail.com
7
8
  * license: MIT
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
- * xdg-utils
3
+ * penguins-eggs
4
+ * class: xdg.ts
4
5
  * author: Piero Proietti
5
6
  * email: piero.proietti@gmail.com
6
7
  * license: MIT
@@ -1,12 +1,13 @@
1
1
  "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
2
  /**
5
- * penguins-eggs-v7 based on Debian live
3
+ * penguins-eggs
4
+ * class: yolk.ts
6
5
  * author: Piero Proietti
7
6
  * email: piero.proietti@gmail.com
8
7
  * license: MIT
9
8
  */
9
+ Object.defineProperty(exports, "__esModule", { value: true });
10
+ const tslib_1 = require("tslib");
10
11
  const fs_1 = tslib_1.__importDefault(require("fs"));
11
12
  const utils_1 = tslib_1.__importDefault(require("./utils"));
12
13
  const pacman_1 = tslib_1.__importDefault(require("./pacman"));
@@ -2,7 +2,8 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  /**
5
- * penguins-eggs: adapt
5
+ * penguins-eggs
6
+ * command: adapt.ts
6
7
  * author: Piero Proietti
7
8
  * email: piero.proietti@gmail.com
8
9
  * license: MIT
@@ -2,7 +2,8 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  /**
5
- * penguins-eggs: analyze
5
+ * penguins-eggs
6
+ * command: analyze.ts
6
7
  * author: Piero Proietti
7
8
  * email: piero.proietti@gmail.com
8
9
  * license: MIT
@@ -2,7 +2,8 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  /**
5
- * penguins-eggs-v7 based on Debian live
5
+ * penguins-eggs
6
+ * command: calamares.ts
6
7
  * author: Piero Proietti
7
8
  * email: piero.proietti@gmail.com
8
9
  * license: MIT
@@ -48,45 +49,16 @@ class Calamares extends core_1.Command {
48
49
  }
49
50
  }
50
51
  console.log(`theme: ${theme}`);
52
+ let policies = flags.policies;
51
53
  const nointeractive = flags.nointeractive;
52
- const noicons = flags.noicons;
53
54
  if (utils_1.default.isRoot(this.id)) {
54
55
  let installer = 'krill';
55
56
  if (pacman_1.default.isInstalledGui()) {
56
57
  installer = 'calamares';
57
58
  }
58
- if (!noicons) { // se VOGLIO le icone
59
- if (installer === 'calamares') {
60
- if (!remove) {
61
- if (!nointeractive || await utils_1.default.customConfirm('Select yes to continue...')) {
62
- /**
63
- * Install calamares
64
- */
65
- if (install) {
66
- utils_1.default.warning('Installing calamares...');
67
- await pacman_1.default.calamaresInstall();
68
- if (await this.settings.load()) {
69
- this.settings.config.force_installer = true;
70
- this.settings.save(this.settings.config);
71
- await pacman_1.default.calamaresPolicies();
72
- }
73
- }
74
- /**
75
- * Configure calamares
76
- */
77
- if (await this.settings.load()) {
78
- utils_1.default.warning('Configuring installer');
79
- await this.settings.loadRemix(this.settings.config.snapshot_basename, theme);
80
- const isClone = false;
81
- this.incubator = new incubator_1.default(this.settings.remix, this.settings.distro, this.settings.config.user_opt, theme, isClone, verbose);
82
- await this.incubator.config(release);
83
- }
84
- }
85
- }
86
- else {
87
- /**
88
- * Remove calamares
89
- */
59
+ if (installer === 'calamares') {
60
+ if (!nointeractive || await utils_1.default.customConfirm('Select yes to continue...')) {
61
+ if (remove) {
90
62
  if (pacman_1.default.calamaresExists()) {
91
63
  await pacman_1.default.calamaresRemove();
92
64
  if (await this.settings.load()) {
@@ -94,16 +66,38 @@ class Calamares extends core_1.Command {
94
66
  this.settings.save(this.settings.config);
95
67
  }
96
68
  }
69
+ process.exit();
70
+ }
71
+ /**
72
+ * Install
73
+ */
74
+ if (install) {
75
+ utils_1.default.warning('Installing calamares...');
76
+ await pacman_1.default.calamaresInstall();
77
+ if (await this.settings.load()) {
78
+ this.settings.config.force_installer = true;
79
+ this.settings.save(this.settings.config);
80
+ policies = true;
81
+ }
82
+ }
83
+ /**
84
+ * Configure
85
+ */
86
+ if (await this.settings.load()) {
87
+ utils_1.default.warning('Configuring installer');
88
+ await this.settings.loadRemix(this.settings.config.snapshot_basename, theme);
89
+ const isClone = false;
90
+ this.incubator = new incubator_1.default(this.settings.remix, this.settings.distro, this.settings.config.user_opt, theme, isClone, verbose);
91
+ await this.incubator.config(release);
92
+ }
93
+ /**
94
+ * policies
95
+ */
96
+ if (policies) {
97
+ await pacman_1.default.calamaresPolicies();
97
98
  }
98
99
  }
99
100
  }
100
- else if ((await utils_1.default.customConfirm('Select yes to continue...')) && (await this.settings.load())) {
101
- utils_1.default.warning('Configuring krill');
102
- await this.settings.loadRemix(this.settings.config.snapshot_basename, theme);
103
- this.incubator = new incubator_1.default(this.settings.remix, this.settings.distro, this.settings.config.user_opt, theme, verbose);
104
- console.log('calamares release: ' + release);
105
- await this.incubator.config(release);
106
- }
107
101
  }
108
102
  }
109
103
  }
@@ -111,7 +105,7 @@ Calamares.flags = {
111
105
  help: core_1.Flags.help({ char: 'h' }),
112
106
  install: core_1.Flags.boolean({ char: 'i', description: "install calamares and its dependencies" }),
113
107
  nointeractive: core_1.Flags.boolean({ char: 'n', description: 'no user interaction' }),
114
- noicons: core_1.Flags.boolean({ char: 'N', description: 'no icons' }),
108
+ policies: core_1.Flags.boolean({ char: 'p', description: 'configure calamares policies' }),
115
109
  release: core_1.Flags.boolean({ char: 'r', description: "release: remove calamares and all its dependencies after the installation" }),
116
110
  remove: core_1.Flags.boolean({ description: "remove calamares and its dependencies" }),
117
111
  theme: core_1.Flags.string({ description: 'theme/branding for eggs and calamares' }),
@@ -2,7 +2,8 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  /**
5
- * penguins-eggs-v8
5
+ * penguins-eggs
6
+ * command: config.ts
6
7
  * author: Piero Proietti
7
8
  * email: piero.proietti@gmail.com
8
9
  * license: MIT
@@ -1,9 +1,13 @@
1
1
  "use strict";
2
- /**
3
- * cuckoo: proxy
4
- */
5
2
  Object.defineProperty(exports, "__esModule", { value: true });
6
3
  const tslib_1 = require("tslib");
4
+ /**
5
+ * penguins-eggs
6
+ * command: cuckoo.ts
7
+ * author: Piero Proietti
8
+ * email: piero.proietti@gmail.com
9
+ * license: MIT
10
+ */
7
11
  const core_1 = require("@oclif/core");
8
12
  const network_1 = tslib_1.__importDefault(require("../classes/network"));
9
13
  const utils_1 = tslib_1.__importDefault(require("../classes/utils"));
@@ -2,7 +2,8 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  /**
5
- * penguins-eggs-v8
5
+ * penguins-eggs
6
+ * command: dad.ts
6
7
  * author: Piero Proietti
7
8
  * email: piero.proietti@gmail.com
8
9
  * license: MIT
@@ -1,6 +1,13 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
+ /**
5
+ * penguins-eggs
6
+ * command: deb.ts
7
+ * author: Piero Proietti
8
+ * email: piero.proietti@gmail.com
9
+ * license: MIT
10
+ */
4
11
  const core_1 = require("@oclif/core");
5
12
  const tools_1 = tslib_1.__importDefault(require("../../classes/tools"));
6
13
  const utils_1 = tslib_1.__importDefault(require("../../classes/utils"));
@@ -2,7 +2,11 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  /**
5
- *
5
+ * penguins-eggs
6
+ * command: iso.ts
7
+ * author: Piero Proietti
8
+ * email: piero.proietti@gmail.com
9
+ * license: MIT
6
10
  */
7
11
  const core_1 = require("@oclif/core");
8
12
  const tools_1 = tslib_1.__importDefault(require("../../classes/tools"));
@@ -1,12 +1,13 @@
1
1
  "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
2
4
  /**
3
- * penguins-eggs-v7 based on Debian live
5
+ * penguins-eggs
6
+ * command: install.ts
4
7
  * author: Piero Proietti
5
8
  * email: piero.proietti@gmail.com
6
9
  * license: MIT
7
10
  */
8
- Object.defineProperty(exports, "__esModule", { value: true });
9
- const tslib_1 = require("tslib");
10
11
  const core_1 = require("@oclif/core");
11
12
  const utils_1 = tslib_1.__importDefault(require("../classes/utils"));
12
13
  const krill_prepare_1 = tslib_1.__importDefault(require("../krill/krill-prepare"));
@@ -3,6 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  /**
5
5
  * penguins-eggs
6
+ * command: kill.ts
6
7
  * author: Piero Proietti
7
8
  * email: piero.proietti@gmail.com
8
9
  * license: MIT
@@ -2,7 +2,8 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  /**
5
- * penguins-eggs-v8
5
+ * penguins-eggs
6
+ * command: mom.ts
6
7
  * author: Piero Proietti
7
8
  * email: piero.proietti@gmail.com
8
9
  * license: MIT
@@ -2,7 +2,8 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  /**
5
- * penguins-eggs-v7 based on Debian live
5
+ * penguins-eggs
6
+ * command: produce.ts
6
7
  * author: Piero Proietti
7
8
  * email: piero.proietti@gmail.com
8
9
  * license: MIT
@@ -1,9 +1,13 @@
1
1
  "use strict";
2
- /**
3
- * info
4
- */
5
2
  Object.defineProperty(exports, "__esModule", { value: true });
6
3
  const tslib_1 = require("tslib");
4
+ /**
5
+ * penguins-eggs
6
+ * command: status.ts
7
+ * author: Piero Proietti
8
+ * email: piero.proietti@gmail.com
9
+ * license: MIT
10
+ */
7
11
  const core_1 = require("@oclif/core");
8
12
  const information_1 = tslib_1.__importDefault(require("../components/elements/information"));
9
13
  /**
@@ -2,7 +2,8 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  /**
5
- * penguins-eggs-v9
5
+ * penguins-eggs
6
+ * command: syncfrom.ts
6
7
  * author: Piero Proietti
7
8
  * email: piero.proietti@gmail.com
8
9
  * license: MIT
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
- * penguins-eggs-v9
3
+ * penguins-eggs
4
+ * command: syncto.ts
4
5
  * author: Piero Proietti
5
6
  * email: piero.proietti@gmail.com
6
7
  * license: MIT
@@ -2,7 +2,8 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  /**
5
- * penguins-eggs-v7 based on Debian live
5
+ * penguins-eggs
6
+ * command: clean.ts
6
7
  * author: Piero Proietti
7
8
  * email: piero.proietti@gmail.com
8
9
  * license: MIT
@@ -2,7 +2,8 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  /**
5
- * penguins-eggs-v7 based on Debian live
5
+ * penguins-eggs
6
+ * command: ppa.ts
6
7
  * author: Piero Proietti
7
8
  * email: piero.proietti@gmail.com
8
9
  * license: MIT
@@ -2,7 +2,8 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  /**
5
- * penguins-eggs-v7 based on Debian live
5
+ * penguins-eggs
6
+ * command: skel.ts
6
7
  * author: Piero Proietti
7
8
  * email: piero.proietti@gmail.com
8
9
  * license: MIT
@@ -1,6 +1,13 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
+ /**
5
+ * penguins-eggs
6
+ * command: stat.ts
7
+ * author: Piero Proietti
8
+ * email: piero.proietti@gmail.com
9
+ * license: MIT
10
+ */
4
11
  const core_1 = require("@oclif/core");
5
12
  const utils_1 = tslib_1.__importDefault(require("../../classes/utils"));
6
13
  const axios_1 = tslib_1.__importDefault(require("axios"));
@@ -2,7 +2,8 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  /**
5
- * penguins-eggs-v7 based on Debian live
5
+ * penguins-eggs
6
+ * command: yolk.ts
6
7
  * author: Piero Proietti
7
8
  * email: piero.proietti@gmail.com
8
9
  * license: MIT
@@ -2,7 +2,8 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  /**
5
- * penguins-eggs-v7 based on Debian live
5
+ * penguins-eggs
6
+ * command: update.ts
6
7
  * author: Piero Proietti
7
8
  * email: piero.proietti@gmail.com
8
9
  * license: MIT
@@ -1,12 +1,13 @@
1
1
  "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
2
4
  /**
3
- * penguins-eggs: wardrobe get
5
+ * penguins-eggs
6
+ * command: get.ts
4
7
  * author: Piero Proietti
5
8
  * email: piero.proietti@gmail.com
6
9
  * license: MIT
7
10
  */
8
- Object.defineProperty(exports, "__esModule", { value: true });
9
- const tslib_1 = require("tslib");
10
11
  const core_1 = require("@oclif/core");
11
12
  const utils_1 = tslib_1.__importDefault(require("../../classes/utils"));
12
13
  // libraries
@@ -1,12 +1,13 @@
1
1
  "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const tslib_1 = require("tslib");
2
4
  /**
3
- * penguins-eggs: wardrobe list
5
+ * penguins-eggs
6
+ * command: list.ts
4
7
  * author: Piero Proietti
5
8
  * email: piero.proietti@gmail.com
6
9
  * license: MIT
7
10
  */
8
- Object.defineProperty(exports, "__esModule", { value: true });
9
- const tslib_1 = require("tslib");
10
11
  const core_1 = require("@oclif/core");
11
12
  const utils_1 = tslib_1.__importDefault(require("../../classes/utils"));
12
13
  const path_1 = tslib_1.__importDefault(require("path"));
@@ -1,9 +1,13 @@
1
1
  "use strict";
2
- /**
3
- * eggs wardrobe show
4
- */
5
2
  Object.defineProperty(exports, "__esModule", { value: true });
6
3
  const tslib_1 = require("tslib");
4
+ /**
5
+ * penguins-eggs
6
+ * command: show.ts
7
+ * author: Piero Proietti
8
+ * email: piero.proietti@gmail.com
9
+ * license: MIT
10
+ */
7
11
  // libraries
8
12
  const core_1 = require("@oclif/core");
9
13
  const js_yaml_1 = tslib_1.__importDefault(require("js-yaml"));
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  /**
3
- * penguins-eggs: wardrobe wear
3
+ * penguins-eggs
4
+ * command: wear.ts
4
5
  * author: Piero Proietti
5
6
  * email: piero.proietti@gmail.com
6
7
  * license: MIT