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.
- package/.oclif.manifest.json +1 -1
- package/README.md +2 -2
- 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 +5 -4
- package/dist/classes/family/archlinux.js +17 -22
- 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 +7 -4
- 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 +2 -1
- 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 +36 -42
- 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 +7 -0
- 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/dist/classes/pacman.js
CHANGED
package/dist/classes/pve-live.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* penguins-
|
|
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");
|
package/dist/classes/pxe.js
CHANGED
|
@@ -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
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* class: pxe.ts
|
|
6
5
|
* author: Piero Proietti
|
|
7
|
-
*
|
|
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"));
|
package/dist/classes/settings.js
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/**
|
|
3
|
-
* penguins-eggs
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* class: settings.ts
|
|
4
5
|
* author: Piero Proietti
|
|
5
|
-
*
|
|
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
|
|
3
|
+
* penguins-eggs
|
|
4
|
+
* class: sources_list.ts
|
|
4
5
|
* author: Piero Proietti
|
|
5
|
-
*
|
|
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
|
-
|
|
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");
|
package/dist/classes/tailor.js
CHANGED
|
@@ -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");
|
package/dist/classes/tools.js
CHANGED
package/dist/classes/users.js
CHANGED
|
@@ -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"));
|
package/dist/classes/utils.js
CHANGED
package/dist/classes/xdg.js
CHANGED
package/dist/classes/yolk.js
CHANGED
|
@@ -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
|
|
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"));
|
package/dist/commands/adapt.js
CHANGED
package/dist/commands/analyze.js
CHANGED
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
4
|
/**
|
|
5
|
-
* penguins-eggs
|
|
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 (
|
|
59
|
-
if (
|
|
60
|
-
if (
|
|
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
|
-
|
|
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' }),
|
package/dist/commands/config.js
CHANGED
package/dist/commands/cuckoo.js
CHANGED
|
@@ -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"));
|
package/dist/commands/dad.js
CHANGED
|
@@ -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"));
|
package/dist/commands/install.js
CHANGED
|
@@ -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
|
|
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"));
|
package/dist/commands/kill.js
CHANGED
package/dist/commands/mom.js
CHANGED
package/dist/commands/produce.js
CHANGED
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
4
|
/**
|
|
5
|
-
* penguins-eggs
|
|
5
|
+
* penguins-eggs
|
|
6
|
+
* command: produce.ts
|
|
6
7
|
* author: Piero Proietti
|
|
7
8
|
* email: piero.proietti@gmail.com
|
|
8
9
|
* license: MIT
|
package/dist/commands/status.js
CHANGED
|
@@ -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
|
/**
|
package/dist/commands/syncto.js
CHANGED
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
4
|
/**
|
|
5
|
-
* penguins-eggs
|
|
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
|
|
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
|
|
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
|
|
5
|
+
* penguins-eggs
|
|
6
|
+
* command: yolk.ts
|
|
6
7
|
* author: Piero Proietti
|
|
7
8
|
* email: piero.proietti@gmail.com
|
|
8
9
|
* license: MIT
|
package/dist/commands/update.js
CHANGED
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const tslib_1 = require("tslib");
|
|
4
4
|
/**
|
|
5
|
-
* penguins-eggs
|
|
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
|
|
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
|
|
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"));
|