penguins-eggs 9.5.22 → 9.5.24
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.
- package/.oclif.manifest.json +1 -1
- package/README.md +1 -1
- package/dist/classes/bleach.js +4 -3
- package/dist/classes/compressors.js +6 -1
- package/dist/classes/daddy.js +24 -63
- package/dist/classes/distro.js +4 -3
- package/dist/classes/family/archlinux.js +3 -1
- package/dist/classes/family/debian.js +2 -1
- package/dist/classes/family/fedora.js +2 -1
- package/dist/classes/family/suse.js +2 -1
- package/dist/classes/incubation/distros/bionic.js +4 -2
- package/dist/classes/incubation/distros/buster.js +7 -5
- package/dist/classes/incubation/distros/focal.js +7 -0
- package/dist/classes/incubation/distros/jessie.js +4 -5
- package/dist/classes/incubation/distros/rolling.js +5 -1
- package/dist/classes/initrd.js +4 -3
- package/dist/classes/keyboards.js +7 -0
- package/dist/classes/locales.js +7 -0
- package/dist/classes/n8.js +2 -1
- package/dist/classes/network.js +2 -1
- package/dist/classes/ovary.js +123 -85
- package/dist/classes/pacman.js +2 -1
- package/dist/classes/pve-live.js +2 -2
- package/dist/classes/pxe.js +6 -4
- package/dist/classes/settings.js +4 -56
- package/dist/classes/sources_list.js +4 -3
- package/dist/classes/systemctl.js +4 -3
- package/dist/classes/tailor.js +7 -6
- package/dist/classes/tools.js +2 -1
- package/dist/classes/users.js +7 -0
- package/dist/classes/utils.js +3 -2
- package/dist/classes/xdg.js +2 -1
- package/dist/classes/yolk.js +4 -3
- package/dist/commands/adapt.js +2 -1
- package/dist/commands/analyze.js +2 -1
- package/dist/commands/calamares.js +2 -1
- package/dist/commands/config.js +2 -1
- package/dist/commands/cuckoo.js +7 -3
- package/dist/commands/dad.js +2 -1
- package/dist/commands/export/deb.js +7 -0
- package/dist/commands/export/iso.js +5 -1
- package/dist/commands/install.js +4 -3
- package/dist/commands/kill.js +1 -0
- package/dist/commands/mom.js +2 -1
- package/dist/commands/produce.js +2 -1
- package/dist/commands/status.js +7 -3
- package/dist/commands/syncfrom.js +2 -1
- package/dist/commands/syncto.js +2 -1
- package/dist/commands/tools/clean.js +2 -1
- package/dist/commands/tools/ppa.js +2 -1
- package/dist/commands/tools/skel.js +2 -1
- package/dist/commands/tools/stat.js +7 -0
- package/dist/commands/tools/yolk.js +2 -1
- package/dist/commands/update.js +2 -1
- package/dist/commands/wardrobe/get.js +4 -3
- package/dist/commands/wardrobe/list.js +4 -3
- package/dist/commands/wardrobe/show.js +7 -3
- package/dist/commands/wardrobe/wear.js +2 -1
- package/dist/components/elements/information.js +7 -0
- package/dist/components/elements/steps.js +7 -0
- package/dist/components/elements/title.js +7 -0
- package/dist/components/finished.js +5 -1
- package/dist/components/install.js +5 -1
- package/dist/components/keyboard.js +5 -1
- package/dist/components/location.js +7 -3
- package/dist/components/network.js +5 -1
- package/dist/components/partitions.js +5 -1
- package/dist/components/summary.js +5 -1
- package/dist/components/users.js +7 -3
- package/dist/components/welcome.js +5 -1
- package/dist/interfaces/i-addons.js +0 -5
- package/dist/interfaces/i-analyze.js +5 -1
- package/dist/interfaces/i-calamares-partition.js +7 -0
- package/dist/interfaces/i-devices.js +0 -5
- package/dist/interfaces/i-distro.js +7 -0
- package/dist/interfaces/i-drive-list.js +5 -1
- package/dist/interfaces/i-eggs-config.js +7 -0
- package/dist/interfaces/i-exec.js +7 -0
- package/dist/interfaces/i-initrd.js +0 -5
- package/dist/interfaces/i-install.js +0 -5
- package/dist/interfaces/i-krill-config.js +7 -0
- package/dist/interfaces/i-packages.js +7 -0
- package/dist/interfaces/i-remix.js +7 -0
- package/dist/interfaces/i-settings.js +0 -4
- package/dist/interfaces/index.js +7 -0
- package/dist/krill/krill-prepare.js +9 -7
- package/dist/krill/krill-sequence.js +5 -4
- package/dist/krill/modules/add-user.js +5 -0
- package/dist/krill/modules/bootloader-config-ubuntu.js +0 -3
- package/dist/krill/modules/bootloader-config.js +5 -0
- package/dist/krill/modules/bootloader.js +5 -0
- package/dist/krill/modules/change-password.js +5 -0
- package/dist/krill/modules/del-live-user.js +5 -0
- package/dist/krill/modules/fstab.js +4 -4
- package/dist/krill/modules/grubcfg.js +4 -4
- package/dist/krill/modules/hostname.js +4 -4
- package/dist/krill/modules/initramfs-cfg.js +4 -4
- package/dist/krill/modules/initramfs.js +4 -4
- package/dist/krill/modules/locale-cfg.js +4 -4
- package/dist/krill/modules/locale.js +4 -4
- package/dist/krill/modules/m-keyboard.js +4 -4
- package/dist/krill/modules/m-timezone.js +4 -4
- package/dist/krill/modules/machine-id.js +4 -4
- package/dist/krill/modules/mkfs.js +4 -4
- package/dist/krill/modules/mount-fs.js +4 -4
- package/dist/krill/modules/mount-vfs.js +4 -4
- package/dist/krill/modules/network-cfg.js +4 -4
- package/dist/krill/modules/packages.js +4 -4
- package/dist/krill/modules/partition.js +4 -4
- package/dist/krill/modules/remove-installer-link.js +4 -4
- package/dist/krill/modules/umount.js +4 -4
- package/dist/krill/modules/unpackfs.js +4 -4
- package/dist/lib/cli-autologin.js +7 -0
- package/dist/lib/dependencies.js +9 -2
- package/dist/lib/get_address.js +7 -0
- package/dist/lib/get_dns.js +7 -0
- package/dist/lib/get_domain.js +7 -0
- package/dist/lib/get_gateway.js +7 -0
- package/dist/lib/get_hostname.js +7 -0
- package/dist/lib/get_netmask.js +7 -0
- package/dist/lib/get_password.js +7 -0
- package/dist/lib/get_root_password.js +7 -0
- package/dist/lib/get_userfullname.js +7 -0
- package/dist/lib/get_username.js +7 -0
- package/dist/lib/kill_me_softly.js +24 -11
- package/dist/lib/select_address_type.js +5 -1
- package/dist/lib/select_filesystem_type.js +7 -0
- package/dist/lib/select_installation_device.js +7 -0
- package/dist/lib/select_installation_mode.js +7 -0
- package/dist/lib/select_interface.js +5 -1
- package/dist/lib/select_keyboard_layout.js +3 -1
- package/dist/lib/select_keyboard_model.js +5 -3
- package/dist/lib/select_keyboard_option.js +3 -1
- package/dist/lib/select_keyboard_variant.js +3 -1
- package/dist/lib/select_languages.js +5 -1
- package/dist/lib/select_regions.js +7 -0
- package/dist/lib/select_user_swap_choice.js +7 -0
- package/dist/lib/select_zones.js +7 -0
- package/dist/lib/utils.js +5 -14
- package/manpages/doc/man/eggs.1.gz +0 -0
- package/manpages/doc/man/eggs.html +3 -3
- package/package.json +1 -1
- package/scripts/mom.sh +1 -1
- package/scripts/addaur.sh +0 -32
package/dist/interfaces/index.js
CHANGED
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const tslib_1 = require("tslib");
|
|
4
2
|
/**
|
|
5
|
-
* penguins-eggs
|
|
6
|
-
*
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: krill-prepare.ts
|
|
7
5
|
* author: Piero Proietti
|
|
8
|
-
*
|
|
9
|
-
*
|
|
10
|
-
*
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
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
|
+
/** OEM Installation (https://github.com/calamares/calamares/issues/871)
|
|
11
13
|
*
|
|
12
14
|
* Thanks to Adriaan De Groot (calamares author)
|
|
13
15
|
*
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* penguins-eggs
|
|
4
|
-
*
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: krill-sequence.ts
|
|
5
5
|
* author: Piero Proietti
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
8
|
+
* https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
|
|
8
9
|
*/
|
|
9
10
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
11
|
const tslib_1 = require("tslib");
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: add-user.ts
|
|
5
|
+
* author: Piero Proietti
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
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,7 +1,4 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
|
|
4
|
-
*/
|
|
5
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
3
|
const tslib_1 = require("tslib");
|
|
7
4
|
const utils_1 = require("../../lib/utils");
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: bootloader-config.ts
|
|
5
|
+
* author: Piero Proietti
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
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,5 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: bootloades.ts
|
|
5
|
+
* author: Piero Proietti
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
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,5 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: change-password.ts
|
|
5
|
+
* author: Piero Proietti
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
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,5 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: del-live.ts
|
|
5
|
+
* author: Piero Proietti
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
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,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: fatab.ts
|
|
5
5
|
* author: Piero Proietti
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
8
8
|
* https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
|
|
9
9
|
*/
|
|
10
10
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: grubcfg.ts
|
|
5
5
|
* author: Piero Proietti
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
8
8
|
* https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
|
|
9
9
|
*/
|
|
10
10
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: hostname.ts
|
|
5
5
|
* author: Piero Proietti
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
8
8
|
* https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
|
|
9
9
|
*/
|
|
10
10
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: initramfs-cfg.ts
|
|
5
5
|
* author: Piero Proietti
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
8
8
|
* https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
|
|
9
9
|
*/
|
|
10
10
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: initramfs.ts
|
|
5
5
|
* author: Piero Proietti
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
8
8
|
* https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
|
|
9
9
|
*/
|
|
10
10
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: locale-cfg.ts
|
|
5
5
|
* author: Piero Proietti
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
8
8
|
* https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
|
|
9
9
|
*/
|
|
10
10
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: locale.ts
|
|
5
5
|
* author: Piero Proietti
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
8
8
|
* https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
|
|
9
9
|
*/
|
|
10
10
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: m-keyboard.ts
|
|
5
5
|
* author: Piero Proietti
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
8
8
|
* https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
|
|
9
9
|
*/
|
|
10
10
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: m-timezone.ts
|
|
5
5
|
* author: Piero Proietti
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
8
8
|
* https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
|
|
9
9
|
*/
|
|
10
10
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: machine-id.ts
|
|
5
5
|
* author: Piero Proietti
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
8
8
|
* https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
|
|
9
9
|
*/
|
|
10
10
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: mlfs.ts
|
|
5
5
|
* author: Piero Proietti
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
8
8
|
* https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
|
|
9
9
|
*/
|
|
10
10
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: mount-fs.ts
|
|
5
5
|
* author: Piero Proietti
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
8
8
|
* https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
|
|
9
9
|
*/
|
|
10
10
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: mount-vfs.ts
|
|
5
5
|
* author: Piero Proietti
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
8
8
|
* https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
|
|
9
9
|
*/
|
|
10
10
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: network.ts
|
|
5
5
|
* author: Piero Proietti
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
8
8
|
* https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
|
|
9
9
|
*/
|
|
10
10
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: packages.ts
|
|
5
5
|
* author: Piero Proietti
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
8
8
|
* https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
|
|
9
9
|
*/
|
|
10
10
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: partition.ts
|
|
5
5
|
* author: Piero Proietti
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
8
8
|
* https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
|
|
9
9
|
*/
|
|
10
10
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: remove-installer.ts
|
|
5
5
|
* author: Piero Proietti
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
8
8
|
* https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
|
|
9
9
|
*/
|
|
10
10
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: umount.ts
|
|
5
5
|
* author: Piero Proietti
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
8
8
|
* https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
|
|
9
9
|
*/
|
|
10
10
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
4
|
-
*
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* krill modules: unpackfs.ts
|
|
5
5
|
* author: Piero Proietti
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
8
8
|
* https://stackoverflow.com/questions/23876782/how-do-i-split-a-typescript-class-into-multiple-files
|
|
9
9
|
*/
|
|
10
10
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* lib: cli-autologin.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 shelljs_1 = tslib_1.__importDefault(require("shelljs"));
|
package/dist/lib/dependencies.js
CHANGED
|
@@ -1,12 +1,19 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* lib: dependencies.ts
|
|
5
|
+
* author: Piero Proietti
|
|
6
|
+
* email: piero.proietti@gmail.com
|
|
7
|
+
* license: MIT
|
|
8
|
+
*/
|
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
+
exports.depInit = exports.depVersions = exports.depArch = exports.depCommon = exports.array2spaced = exports.array2comma = void 0;
|
|
2
11
|
/**
|
|
3
12
|
* depCommon
|
|
4
13
|
* depArch
|
|
5
14
|
* depVersion
|
|
6
15
|
* depInit
|
|
7
16
|
*/
|
|
8
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
-
exports.depInit = exports.depVersions = exports.depArch = exports.depCommon = exports.array2spaced = exports.array2comma = void 0;
|
|
10
17
|
/**
|
|
11
18
|
*
|
|
12
19
|
* @param packages array packages
|
package/dist/lib/get_address.js
CHANGED
package/dist/lib/get_dns.js
CHANGED
package/dist/lib/get_domain.js
CHANGED
package/dist/lib/get_gateway.js
CHANGED
package/dist/lib/get_hostname.js
CHANGED
package/dist/lib/get_netmask.js
CHANGED