penguins-eggs 9.2.2 → 9.2.4

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 (87) hide show
  1. package/README.md +145 -130
  2. package/addons/eggs/theme/livecd/isolinux.theme.cfg +36 -41
  3. package/conf/eggs.yaml +41 -73
  4. package/conf/exclude.list +1 -0
  5. package/conf/krill.yaml +38 -0
  6. package/lib/classes/daddy.d.ts +2 -2
  7. package/lib/classes/distro.d.ts +2 -0
  8. package/lib/classes/distro.js +6 -0
  9. package/lib/classes/incubation/fisherman.js +1 -1
  10. package/lib/classes/pacman.js +3 -2
  11. package/lib/classes/pxe.d.ts +42 -0
  12. package/lib/classes/pxe.js +242 -0
  13. package/lib/classes/settings.d.ts +3 -3
  14. package/lib/classes/settings.js +2 -1
  15. package/lib/classes/tools.d.ts +2 -2
  16. package/lib/classes/utils.d.ts +1 -1
  17. package/lib/classes/utils.js +1 -1
  18. package/lib/commands/cuckoo.d.ts +24 -0
  19. package/lib/commands/cuckoo.js +69 -0
  20. package/lib/commands/install.d.ts +2 -2
  21. package/lib/commands/install.js +8 -14
  22. package/lib/commands/produce.js +3 -3
  23. package/lib/commands/{info.d.ts → status.d.ts} +1 -1
  24. package/lib/commands/{info.js → status.js} +5 -5
  25. package/lib/components/summary.d.ts +6 -1
  26. package/lib/components/summary.js +25 -8
  27. package/lib/components/users.js +3 -4
  28. package/lib/interfaces/i-config-tools.d.ts +1 -1
  29. package/lib/interfaces/i-distro.d.ts +2 -0
  30. package/lib/interfaces/{i-config.d.ts → i-eggs-config.d.ts} +2 -4
  31. package/lib/interfaces/{i-config.js → i-eggs-config.js} +0 -0
  32. package/lib/interfaces/i-krill-config.d.ts +26 -0
  33. package/lib/interfaces/i-krill-config.js +2 -0
  34. package/lib/interfaces/i-packages.d.ts +6 -9
  35. package/lib/interfaces/i-packages.js +3 -0
  36. package/lib/interfaces/index.d.ts +1 -1
  37. package/lib/krill/krill-prepare.d.ts +5 -3
  38. package/lib/krill/krill-prepare.js +159 -35
  39. package/lib/krill/krill-sequence.d.ts +5 -3
  40. package/lib/krill/krill-sequence.js +26 -12
  41. package/lib/krill/modules/fstab.d.ts +5 -0
  42. package/lib/krill/modules/fstab.js +5 -0
  43. package/lib/krill/modules/grubcfg.d.ts +5 -0
  44. package/lib/krill/modules/grubcfg.js +5 -0
  45. package/lib/krill/modules/hostname.d.ts +5 -0
  46. package/lib/krill/modules/hostname.js +5 -0
  47. package/lib/krill/modules/hosts.d.ts +5 -0
  48. package/lib/krill/modules/hosts.js +5 -0
  49. package/lib/krill/modules/initramfs-cfg.d.ts +5 -0
  50. package/lib/krill/modules/initramfs-cfg.js +5 -0
  51. package/lib/krill/modules/initramfs.d.ts +5 -0
  52. package/lib/krill/modules/initramfs.js +5 -0
  53. package/lib/krill/modules/locale-cfg.d.ts +5 -0
  54. package/lib/krill/modules/locale-cfg.js +5 -0
  55. package/lib/krill/modules/locale.d.ts +5 -0
  56. package/lib/krill/modules/locale.js +5 -0
  57. package/lib/krill/modules/machine-id.d.ts +5 -0
  58. package/lib/krill/modules/machine-id.js +5 -0
  59. package/lib/krill/modules/mkfs.d.ts +5 -0
  60. package/lib/krill/modules/mkfs.js +5 -0
  61. package/lib/krill/modules/mount-fs.d.ts +5 -0
  62. package/lib/krill/modules/mount-fs.js +5 -0
  63. package/lib/krill/modules/mount-vfs.d.ts +5 -0
  64. package/lib/krill/modules/mount-vfs.js +5 -0
  65. package/lib/krill/modules/network-cfg.d.ts +5 -0
  66. package/lib/krill/modules/network-cfg.js +5 -0
  67. package/lib/krill/modules/packages.d.ts +14 -0
  68. package/lib/krill/modules/packages.js +65 -0
  69. package/lib/krill/modules/{partitions.d.ts → partition.d.ts} +5 -0
  70. package/lib/krill/modules/{partitions.js → partition.js} +5 -0
  71. package/lib/krill/modules/remove-installer-link.d.ts +5 -0
  72. package/lib/krill/modules/remove-installer-link.js +5 -0
  73. package/lib/krill/modules/set-keyboard.d.ts +5 -0
  74. package/lib/krill/modules/set-keyboard.js +37 -18
  75. package/lib/krill/modules/set-timezone.d.ts +5 -0
  76. package/lib/krill/modules/set-timezone.js +5 -0
  77. package/lib/krill/modules/umount.d.ts +5 -0
  78. package/lib/krill/modules/umount.js +5 -0
  79. package/lib/krill/modules/unpackfs.d.ts +5 -0
  80. package/lib/krill/modules/unpackfs.js +5 -0
  81. package/manpages/doc/man/eggs.1.gz +0 -0
  82. package/manpages/doc/man/eggs.html +72 -83
  83. package/package.json +6 -2
  84. package/scripts/_eggs +23 -24
  85. package/scripts/eggs.bash +4 -4
  86. package/scripts/mom-cli.sh +11 -11
  87. package/manpages/doc/man/eggs.roll.gz +0 -0
@@ -1,4 +1,9 @@
1
1
  /**
2
+ * krill: module mount-fs
3
+ *
4
+ * author: Piero Proietti
5
+ * mail: piero.proietti@gmail.com
6
+ *
2
7
  * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
3
8
  */
4
9
  import Sequence from '../krill-sequence';
@@ -1,5 +1,10 @@
1
1
  "use strict";
2
2
  /**
3
+ * krill: module mount-fs
4
+ *
5
+ * author: Piero Proietti
6
+ * mail: piero.proietti@gmail.com
7
+ *
3
8
  * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
4
9
  */
5
10
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,4 +1,9 @@
1
1
  /**
2
+ * krill: module mount-vfs
3
+ *
4
+ * author: Piero Proietti
5
+ * mail: piero.proietti@gmail.com
6
+ *
2
7
  * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
3
8
  */
4
9
  import Sequence from '../krill-sequence';
@@ -1,5 +1,10 @@
1
1
  "use strict";
2
2
  /**
3
+ * krill: module mount-vfs
4
+ *
5
+ * author: Piero Proietti
6
+ * mail: piero.proietti@gmail.com
7
+ *
3
8
  * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
4
9
  */
5
10
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,4 +1,9 @@
1
1
  /**
2
+ * krill: module network-cfg
3
+ *
4
+ * author: Piero Proietti
5
+ * mail: piero.proietti@gmail.com
6
+ *
2
7
  * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
3
8
  */
4
9
  import Sequence from '../krill-sequence';
@@ -1,5 +1,10 @@
1
1
  "use strict";
2
2
  /**
3
+ * krill: module network-cfg
4
+ *
5
+ * author: Piero Proietti
6
+ * mail: piero.proietti@gmail.com
7
+ *
3
8
  * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
4
9
  */
5
10
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,14 @@
1
+ /**
2
+ * krill: module packages (use /etc/calamares/modules/packages.conf)
3
+ *
4
+ * author: Piero Proietti
5
+ * mail: piero.proietti@gmail.com
6
+ *
7
+ * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
8
+ */
9
+ import Sequence from '../krill-sequence';
10
+ /**
11
+ *
12
+ * @param this
13
+ */
14
+ export default function packages(this: Sequence): Promise<void>;
@@ -0,0 +1,65 @@
1
+ "use strict";
2
+ /**
3
+ * krill: module packages (use /etc/calamares/modules/packages.conf)
4
+ *
5
+ * author: Piero Proietti
6
+ * mail: piero.proietti@gmail.com
7
+ *
8
+ * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
9
+ */
10
+ Object.defineProperty(exports, "__esModule", { value: true });
11
+ const tslib_1 = require("tslib");
12
+ const utils_1 = require("../../lib/utils");
13
+ const utils_2 = tslib_1.__importDefault(require("../../classes/utils"));
14
+ const fs_1 = tslib_1.__importDefault(require("fs"));
15
+ const js_yaml_1 = tslib_1.__importDefault(require("js-yaml"));
16
+ /**
17
+ *
18
+ * @param this
19
+ */
20
+ async function packages() {
21
+ let echoYes = utils_2.default.setEcho(true);
22
+ const config_file = `${this.installTarget}/etc/calamares/modules/packages.conf`;
23
+ if (fs_1.default.existsSync(config_file)) {
24
+ const packages = js_yaml_1.default.load(fs_1.default.readFileSync(config_file, 'utf-8'));
25
+ /**
26
+ * we can do better, but work
27
+ */
28
+ let operations = JSON.parse(JSON.stringify(packages.operations));
29
+ let packagesToRemove = [];
30
+ let packagesTryInstall = [];
31
+ if (operations.length > 1) {
32
+ packagesToRemove = operations[0].remove;
33
+ packagesTryInstall = operations[1].try_install;
34
+ }
35
+ else {
36
+ packagesTryInstall = operations[0].try_install;
37
+ }
38
+ if (packages.backend === 'apt') {
39
+ if (packagesToRemove.length > 0) {
40
+ let ctr = `chroot ${this.installTarget} apt-get purge -y `;
41
+ for (const packageToRemove of packagesToRemove) {
42
+ ctr += packageToRemove + ' ';
43
+ }
44
+ await (0, utils_1.exec)(`${ctr} ${this.toNull}`, this.echo);
45
+ await (0, utils_1.exec)(`chroot ${this.installTarget} apt-get autoremove -y ${this.toNull}`, this.echo);
46
+ }
47
+ for (const packageToInstall of packagesTryInstall) {
48
+ await (0, utils_1.exec)(`chroot ${this.installTarget} apt-get purge -y ${packageToInstall} ${this.toNull}`, this.echo);
49
+ }
50
+ }
51
+ else if (packages.backend === 'pacman') {
52
+ if (packagesToRemove.length > 0) {
53
+ let ctr = `chroot ${this.installTarget} pacman -S `;
54
+ for (const packageToRemove of packagesToRemove) {
55
+ ctr += packageToRemove + ' ';
56
+ }
57
+ await (0, utils_1.exec)(`${ctr} ${echoYes}`, this.echo);
58
+ }
59
+ for (const packageToInstall of packagesTryInstall) {
60
+ await (0, utils_1.exec)(`chroot ${this.installTarget} pacman -S ${packageToInstall}`, echoYes);
61
+ }
62
+ }
63
+ }
64
+ }
65
+ exports.default = packages;
@@ -1,4 +1,9 @@
1
1
  /**
2
+ * krill: module partitions
3
+ *
4
+ * author: Piero Proietti
5
+ * mail: piero.proietti@gmail.com
6
+ *
2
7
  * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
3
8
  */
4
9
  import Sequence from '../krill-sequence';
@@ -1,5 +1,10 @@
1
1
  "use strict";
2
2
  /**
3
+ * krill: module partitions
4
+ *
5
+ * author: Piero Proietti
6
+ * mail: piero.proietti@gmail.com
7
+ *
3
8
  * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
4
9
  */
5
10
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,4 +1,9 @@
1
1
  /**
2
+ * krill: module removeInstallerLink
3
+ *
4
+ * author: Piero Proietti
5
+ * mail: piero.proietti@gmail.com
6
+ *
2
7
  * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
3
8
  */
4
9
  import Sequence from '../krill-sequence';
@@ -1,5 +1,10 @@
1
1
  "use strict";
2
2
  /**
3
+ * krill: module removeInstallerLink
4
+ *
5
+ * author: Piero Proietti
6
+ * mail: piero.proietti@gmail.com
7
+ *
3
8
  * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
4
9
  */
5
10
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,4 +1,9 @@
1
1
  /**
2
+ * krill: module setKeyboard
3
+ *
4
+ * author: Piero Proietti
5
+ * mail: piero.proietti@gmail.com
6
+ *
2
7
  * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
3
8
  */
4
9
  import Sequence from '../krill-sequence';
@@ -1,5 +1,10 @@
1
1
  "use strict";
2
2
  /**
3
+ * krill: module setKeyboard
4
+ *
5
+ * author: Piero Proietti
6
+ * mail: piero.proietti@gmail.com
7
+ *
3
8
  * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
4
9
  */
5
10
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -12,8 +17,8 @@ async function setKeyboard() {
12
17
  * - /etc/vconsole.conf (console)
13
18
  * - /etc/X11/xorg.conf.d/00-keyboard.conf
14
19
  *
15
- * Problem: Actually don't update /etc/default/keyboard (x11)s
16
- * /etc/vconsole.conf is update in installed syste,
20
+ * Problem: Actually don't update /etc/default/keyboard (x11)
21
+ * /etc/vconsole.conf is update in installed systems
17
22
  */
18
23
  // systemd as default
19
24
  let cmd = `chroot ${this.installTarget} localectl set-keymap ${this.keyboardLayout}`;
@@ -30,21 +35,35 @@ async function setKeyboard() {
30
35
  /**
31
36
  * this must to be not necessary but...
32
37
  *
33
- * force change /etc/default/keyboard (x11)
34
- * force change /etc/vconsole.conf
35
- */
36
- let content = '# KEYBOARD CONFIGURATION FILE\n\n';
37
- content += '# Consult the keyboard(5) manual page.\n\n';
38
- content += 'XKBMODEL="' + this.keyboardModel + '"\n';
39
- content += 'XKBLAYOUT="' + this.keyboardLayout + '"\n';
40
- content += 'XKBVARIANT="' + this.keyboardVariant + '"\n';
41
- content += 'XKBOPTIONS=""\n';
42
- content += '\n';
43
- content += 'BACKSPACE="guess"\n';
44
- // Utils.write(this.installTarget + '/etc/default/keyboard', content)
45
- content = 'KEYMAP=' + +this.keyboardModel + '"\n';
46
- content += 'FONT=\n';
47
- content += 'FONT_MAP=\n';
48
- // Utils.write(this.installTarget + '/etc/vconsole.conf', content)
38
+ * force change /etc/default/keyboard (x11)
39
+ * force change /etc/vconsole.conf
40
+ * force change /etc/X11/xorg.conf.d/00-keyboard.conf
41
+ */
42
+ if (utils_1.default.isSystemd()) {
43
+ let content = '# KEYBOARD CONFIGURATION FILE\n\n';
44
+ content += '# Consult the keyboard(5) manual page.\n\n';
45
+ content += '# See penguins-eggs/src/krill/modules/set-keyboard.ts\n\n';
46
+ content += 'XKBMODEL="' + this.keyboardModel + '"\n';
47
+ content += 'XKBLAYOUT="' + this.keyboardLayout + '"\n';
48
+ content += 'XKBVARIANT="' + this.keyboardVariant + '"\n';
49
+ content += 'XKBOPTIONS=""\n';
50
+ content += '\n';
51
+ content += 'BACKSPACE="guess"\n';
52
+ utils_1.default.write(this.installTarget + '/etc/default/keyboard', content);
53
+ content = '# See penguins-eggs/src/krill/modules/set-keyboard.ts\n\n';
54
+ content += 'KEYMAP="' + this.keyboardLayout + '"\n';
55
+ content += 'FONT=\n';
56
+ content += 'FONT_MAP=\n';
57
+ utils_1.default.write(this.installTarget + '/etc/vconsole.conf', content);
58
+ content = '# See penguins-eggs/src/krill/modules/set-keyboard.ts\n\n';
59
+ content += `# Read and parsed by systemd-localed. It's probably wise not to edit this file\n`;
60
+ content += `# manually too freely.\n`;
61
+ content += `Section "InputClass"\n`;
62
+ content += ` Identifier "system-keyboard"\n`;
63
+ content += ` MatchIsKeyboard "on"\n`;
64
+ content += ` Option "XkbLayout" "` + this.keyboardLayout + `"\n`;
65
+ content += `EndSection\n`;
66
+ utils_1.default.write(this.installTarget + '/etc/X11/xorg.conf.d/00-keyboard.conf', content);
67
+ }
49
68
  }
50
69
  exports.default = setKeyboard;
@@ -1,4 +1,9 @@
1
1
  /**
2
+ * krill: module setTimezone
3
+ *
4
+ * author: Piero Proietti
5
+ * mail: piero.proietti@gmail.com
6
+ *
2
7
  * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
3
8
  */
4
9
  import Sequence from '../krill-sequence';
@@ -1,5 +1,10 @@
1
1
  "use strict";
2
2
  /**
3
+ * krill: module setTimezone
4
+ *
5
+ * author: Piero Proietti
6
+ * mail: piero.proietti@gmail.com
7
+ *
3
8
  * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
4
9
  */
5
10
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,4 +1,9 @@
1
1
  /**
2
+ * krill: module umount
3
+ *
4
+ * author: Piero Proietti
5
+ * mail: piero.proietti@gmail.com
6
+ *
2
7
  * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
3
8
  */
4
9
  import Sequence from '../krill-sequence';
@@ -1,5 +1,10 @@
1
1
  "use strict";
2
2
  /**
3
+ * krill: module umount
4
+ *
5
+ * author: Piero Proietti
6
+ * mail: piero.proietti@gmail.com
7
+ *
3
8
  * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
4
9
  */
5
10
  Object.defineProperty(exports, "__esModule", { value: true });
@@ -1,4 +1,9 @@
1
1
  /**
2
+ * krill: module unpackfs
3
+ *
4
+ * author: Piero Proietti
5
+ * mail: piero.proietti@gmail.com
6
+ *
2
7
  * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
3
8
  */
4
9
  import Sequence from '../krill-sequence';
@@ -1,5 +1,10 @@
1
1
  "use strict";
2
2
  /**
3
+ * krill: module unpackfs
4
+ *
5
+ * author: Piero Proietti
6
+ * mail: piero.proietti@gmail.com
7
+ *
3
8
  * https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
4
9
  */
5
10
  Object.defineProperty(exports, "__esModule", { value: true });
Binary file
@@ -6,18 +6,31 @@
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1">
7
7
  </head>
8
8
  <body>
9
- <h1>eggs(1) -- the reproductive system of penguins: eggs v9.1.32</h1>
9
+ <h1>eggs(1) -- the reproductive system of penguins: eggs v9.2.3</h1>
10
10
  <h1>SYNOPSIS</h1>
11
- <p>deb package</p>
12
- <pre><code>$ sudo dpkg -i eggs_9.1.32_amd64.deb
11
+ <p>Install Debian families (debian/devuan/ubuntu)</p>
12
+ <pre><code>$ sudo dpkg -i eggs_9.2.3_amd64.deb
13
13
  </code></pre>
14
- <p>npm package</p>
15
- <pre><code>$ npm install -g penguins-eggs
16
- $ eggs COMMAND
17
- running command...
18
- $ eggs (-v|--version|version)
14
+ <p>Install Arch families (Arch, manjaro Linux)</p>
15
+ <p>Arch from AUR</p>
16
+ <pre><code>$ git clone https://aur.archlinux.org/penguins-eggs.git
17
+ $ cd penguins-eggs.git
18
+ $ makepkg -si
19
+ </code></pre>
20
+ <p>Arch from development repo</p>
21
+ <pre><code>$ git clone https://github.com/pieroproietti/penguins-eggs-arch
22
+ $ cd penguins-eggs-arch
23
+ $ makepkg -si
24
+ </code></pre>
25
+ <p>Manjaro from development repo</p>
26
+ <pre><code>$ git clone https://github.com/pieroproietti/penguins-eggs-manjaro
27
+ $ cd penguins-eggs-manjaro
28
+ $ makepkg -si
29
+ </code></pre>
30
+ <h1>USAGE</h1>
31
+ <pre><code>$ eggs (-v|--version|version)
19
32
 
20
- penguins-eggs/9.1.32 linux-x64 node-v16.15.1
33
+ penguins-eggs/9.2.3 linux-x64 node-v16.16.0
21
34
  $ eggs --help [COMMAND]
22
35
 
23
36
  USAGE
@@ -25,18 +38,20 @@ $ eggs COMMAND
25
38
  </code></pre>
26
39
  <p>Most of the commands of eggs need sudo, but there are exceptions for export, info and mom.</p>
27
40
  <p>examples:</p>
28
- <pre><code>sudo eggs config
29
- sudo eggs produce
41
+ <pre><code>sudo eggs produce --fast
42
+ sudo eggs produce --fast --clone
43
+ sudo eggs produce --fast --backup
30
44
  sudo eggs kill
31
45
  </code></pre>
32
46
  <p>There are too, two interactive helpers:</p>
33
47
  <pre><code>eggs mom
34
48
  sudo eggs dad
49
+ sudo eggs dad -d
35
50
  </code></pre>
36
- <p>Help yorself signing in the forum or in facebook group page or asking me.</p>
51
+ <p>Help yorself signing on telegram https://t.me/penguins_eggs or in facebook group page or asking me.</p>
37
52
  <h1>DESCRIPTION</h1>
38
53
  <p>eggs is a console utility, in active development, who let you to remaster your system and redistribuite it as iso image.</p>
39
- <p>The scope of this project is to implement the process of remastering your version of Linux, generate it as ISO image to burn on a CD/DVD or copy to a usb key to boot your system. You can easily install your live system with gui installer (calamares) or eggs cle installer (krill).</p>
54
+ <p>The scope of this project is to implement the process of remastering your version of Linux, generate it as ISO image to burn on a CD/DVD or copy to a usb key to boot your system. You can easily install your live system with gui installer (calamares) or eggs CLI installer (krill).</p>
40
55
  <h1>COMMANDS</h1>
41
56
  <ul>
42
57
  <li><a href="#eggs-adapt"><code>eggs adapt</code></a></li>
@@ -49,12 +64,11 @@ sudo eggs dad
49
64
  <li><a href="#eggs-export-docs"><code>eggs export docs</code></a></li>
50
65
  <li><a href="#eggs-export-iso"><code>eggs export iso</code></a></li>
51
66
  <li><a href="#eggs-help-command"><code>eggs help [COMMAND]</code></a></li>
52
- <li><a href="#eggs-info"><code>eggs info</code></a></li>
67
+ <li><a href="#eggs-install"><code>eggs install</code></a></li>
53
68
  <li><a href="#eggs-kill"><code>eggs kill</code></a></li>
54
- <li><a href="#eggs-krill"><code>eggs krill</code></a></li>
55
69
  <li><a href="#eggs-mom"><code>eggs mom</code></a></li>
56
70
  <li><a href="#eggs-produce"><code>eggs produce</code></a></li>
57
- <li><a href="#eggs-remove"><code>eggs remove</code></a></li>
71
+ <li><a href="#eggs-status"><code>eggs status</code></a></li>
58
72
  <li><a href="#eggs-syncfrom"><code>eggs syncfrom</code></a></li>
59
73
  <li><a href="#eggs-syncto"><code>eggs syncto</code></a></li>
60
74
  <li><a href="#eggs-tools-clean"><code>eggs tools clean</code></a></li>
@@ -229,17 +243,24 @@ FLAGS
229
243
  DESCRIPTION
230
244
  Display help for eggs.
231
245
  </code></pre>
232
- <h2><code>eggs info</code></h2>
233
- <p>informations about eggs configuration</p>
246
+ <h2><code>eggs install</code></h2>
247
+ <p>command-line system installer - the egg became a penguin!</p>
234
248
  <pre><code>USAGE
235
- $ eggs info [-v] [-h]
249
+ $ eggs install [-u] [-k] [-p] [-h] [-v]
236
250
 
237
251
  FLAGS
238
- -h, --help Show CLI help.
239
- -v, --verbose
252
+ -h, --help Show CLI help.
253
+ -k, --crypted crypted CLI installation
254
+ -p, --pve Proxmox VE install
255
+ -u, --unattended unattended CLI installation
256
+ -v, --verbose verbose
240
257
 
241
258
  DESCRIPTION
242
- informations about eggs configuration
259
+ command-line system installer - the egg became a penguin!
260
+
261
+ EXAMPLES
262
+ $ eggs install
263
+ Install the system using krill installer
243
264
  </code></pre>
244
265
  <h2><code>eggs kill</code></h2>
245
266
  <p>kill the eggs/free the nest</p>
@@ -256,25 +277,6 @@ DESCRIPTION
256
277
  EXAMPLES
257
278
  $ eggs kill
258
279
  kill the eggs/free the nest
259
- </code></pre>
260
- <h2><code>eggs krill</code></h2>
261
- <p>command-line system installer - the egg became a penguin!</p>
262
- <pre><code>USAGE
263
- $ eggs krill [-c] [-k] [-p] [-h] [-v]
264
-
265
- FLAGS
266
- -c, --cli force use CLI installer
267
- -h, --help Show CLI help.
268
- -k, --crypted crypted CLI installation
269
- -p, --pve Proxmox VE install
270
- -v, --verbose verbose
271
-
272
- DESCRIPTION
273
- command-line system installer - the egg became a penguin!
274
-
275
- EXAMPLES
276
- $ eggs install
277
- Install the system using GUI or CLI installer
278
280
  </code></pre>
279
281
  <h2><code>eggs mom</code></h2>
280
282
  <p>ask for mommy - gui helper</p>
@@ -290,11 +292,12 @@ DESCRIPTION
290
292
  <h2><code>eggs produce</code></h2>
291
293
  <p>produce a live image from your system whithout your data</p>
292
294
  <pre><code>USAGE
293
- $ eggs produce [-p &#x3C;value>] [--basename &#x3C;value>] [-b] [-f] [-n] [-m] [-v] [-y] [-s] [-h] [--theme &#x3C;value>]
294
- [--addons &#x3C;value>] [--release]
295
+ $ eggs produce [-p &#x3C;value>] [--basename &#x3C;value>] [-b] [-c] [-f] [-n] [-m] [-v] [-y] [-s] [-h] [--theme
296
+ &#x3C;value>] [--addons &#x3C;value>] [--release]
295
297
 
296
298
  FLAGS
297
- -b, --backup backup mode
299
+ -b, --backup backup mode (CRYPTED)
300
+ -c, --clone clone mode
298
301
  -f, --fast fast compression
299
302
  -h, --help Show CLI help.
300
303
  -m, --max max compression
@@ -305,7 +308,7 @@ FLAGS
305
308
  -y, --yolk -y force yolk renew
306
309
  --addons=&#x3C;value>... addons to be used: adapt, ichoice, pve, rsupport
307
310
  --basename=&#x3C;value> basename
308
- --release release: configure GUI installer to remove eggs and calamares after installation
311
+ --release release: max compression, remove penguins-eggs and calamares after installation
309
312
  --theme=&#x3C;value> theme for livecd, calamares branding and partitions
310
313
 
311
314
  DESCRIPTION
@@ -342,32 +345,20 @@ EXAMPLES
342
345
  produce scripts to build an ISO as the previus example. Scripts can be found
343
346
  in /home/eggs/ovarium and you can customize all you need
344
347
  </code></pre>
345
- <h2><code>eggs remove</code></h2>
346
- <p>remove eggs and others stuff</p>
348
+ <h2><code>eggs status</code></h2>
349
+ <p>informations about eggs status</p>
347
350
  <pre><code>USAGE
348
- $ eggs remove [-p] [-a] [-h] [-v]
351
+ $ eggs status [-v] [-h]
349
352
 
350
353
  FLAGS
351
- -a, --autoremove remove eggs packages dependencies
352
- -h, --help Show CLI help.
353
- -p, --purge remove eggs configurations files
354
- -v, --verbose verbose
354
+ -h, --help Show CLI help.
355
+ -v, --verbose
355
356
 
356
357
  DESCRIPTION
357
- remove eggs and others stuff
358
-
359
- EXAMPLES
360
- $ sudo eggs remove
361
- remove eggs
362
-
363
- $ sudo eggs remove --purge
364
- remove eggs, eggs configurations, configuration's files
365
-
366
- $ sudo eggs remove --autoremove
367
- remove eggs, eggs configurations, packages dependencies
358
+ informations about eggs status
368
359
  </code></pre>
369
360
  <h2><code>eggs syncfrom</code></h2>
370
- <p>Restore users, server and datas from luks-eggs-backup</p>
361
+ <p>restore users and user data from a LUKS volumes</p>
371
362
  <pre><code>USAGE
372
363
  $ eggs syncfrom [--delete &#x3C;value>] [-f &#x3C;value>] [-r &#x3C;value>] [-h] [-v]
373
364
 
@@ -379,13 +370,13 @@ FLAGS
379
370
  --delete=&#x3C;value> rsync --delete delete extraneous files from dest dirs
380
371
 
381
372
  DESCRIPTION
382
- Restore users, server and datas from luks-eggs-backup
373
+ restore users and user data from a LUKS volumes
383
374
 
384
375
  EXAMPLES
385
376
  $ sudo eggs restore
386
377
  </code></pre>
387
378
  <h2><code>eggs syncto</code></h2>
388
- <p>saving users' datas and accounts on LUKS volume</p>
379
+ <p>saves users and user data in a LUKS volume inside the iso</p>
389
380
  <pre><code>USAGE
390
381
  $ eggs syncto [--delete &#x3C;value>] [-f &#x3C;value>] [-h] [-v]
391
382
 
@@ -396,7 +387,7 @@ FLAGS
396
387
  --delete=&#x3C;value> rsync --delete delete extraneous files from dest dirs
397
388
 
398
389
  DESCRIPTION
399
- saving users' datas and accounts on LUKS volume
390
+ saves users and user data in a LUKS volume inside the iso
400
391
 
401
392
  EXAMPLES
402
393
  $ sudo eggs syncto
@@ -476,7 +467,18 @@ EXAMPLES
476
467
  </code></pre>
477
468
  <h2><code>eggs version</code></h2>
478
469
  <pre><code>USAGE
479
- $ eggs version
470
+ $ eggs version [--json] [--verbose]
471
+
472
+ FLAGS
473
+ --verbose Show additional information about the CLI.
474
+
475
+ GLOBAL FLAGS
476
+ --json Format output as json.
477
+
478
+ FLAG DESCRIPTIONS
479
+ --verbose Show additional information about the CLI.
480
+
481
+ Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.
480
482
  </code></pre>
481
483
  <h2><code>eggs wardrobe get [REPO]</code></h2>
482
484
  <p>get warorobe</p>
@@ -569,29 +571,16 @@ DESCRIPTION
569
571
 
570
572
  /usr/lib/penguins-eggs (deb package)
571
573
  here eggs is installed
572
- OR
573
- /usr/lib/node_modules/penguins-eggs/ (npm package)
574
- here eggs is installed
575
574
  </code></pre>
576
575
  <h1>TROUBLES</h1>
577
- <ul>
578
- <li><strong>sudo eggs update</strong> # select basket, choose the version and download it but not install. The package will saver in /tmp;</li>
579
- </ul>
580
- <p>remove old version:</p>
581
- <ul>
582
- <li><strong>sudo apt --purge eggs</strong> # remove eggs</li>
583
- </ul>
584
- <p>and, finally install the new one:</p>
585
- <ul>
586
- <li><strong>sudo dpkg -i /tmp/eggs_7.7.9-1_amd64.deb</strong> # install eggs from downloaded package</li>
587
- </ul>
588
576
  <h2>BUGS</h2>
589
577
  <p>Report problems o new ideas in: <a href="https://github.com/pieroproietti/penguins-eggs/issues">https://github.com/pieroproietti/penguins-eggs/issues</a></p>
590
578
  <h1>RESOURCES AND DOCUMENTATION</h1>
591
- <p>Consult website to find documentation, forum. There is a facebook gruop and page too.</p>
579
+ <p>Consult website to find documentation</p>
592
580
  <ul>
593
581
  <li>website: <strong>https://penguins-eggs.net</strong></li>
594
582
  <li>gitHub repository: <strong>https://github.com/pieroproietti/penguins-eggs</strong></li>
583
+ <li>telegram: <strong>https://t.me/penguins_eggs</strong></li>
595
584
  </ul>
596
585
  <h1>AUTHOR</h1>
597
586
  <p>Piero Proietti <a href="mailto:piero.proietti@gmail.com">piero.proietti@gmail.com</a></p>