penguins-eggs 9.2.6 → 9.2.9
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 -0
- package/README.md +34 -31
- package/conf/distros/kinetic/README.md +41 -0
- package/conf/tools.yaml +1 -1
- package/{lib → dist}/classes/bleach.js +0 -0
- package/{lib → dist}/classes/compressors.js +0 -0
- package/{lib → dist}/classes/daddy.js +0 -0
- package/{lib → dist}/classes/distro.js +14 -30
- package/{lib → dist}/classes/family/archlinux.js +0 -0
- package/{lib → dist}/classes/family/debian.js +0 -0
- package/{lib → dist}/classes/family/fedora.js +0 -0
- package/{lib → dist}/classes/family/suse.js +0 -0
- package/{lib → dist}/classes/incubation/branding.js +0 -0
- package/{lib → dist}/classes/incubation/distros/bionic.js +0 -0
- package/{lib → dist}/classes/incubation/distros/buster.js +0 -0
- package/{lib → dist}/classes/incubation/distros/focal.js +0 -0
- package/{lib → dist}/classes/incubation/distros/jessie.js +0 -0
- package/{lib → dist}/classes/incubation/distros/rolling.js +0 -0
- package/{lib → dist}/classes/incubation/fisherman-helper/displaymanager.js +0 -0
- package/{lib → dist}/classes/incubation/fisherman-helper/packages.js +0 -0
- package/{lib → dist}/classes/incubation/fisherman.js +0 -0
- package/{lib → dist}/classes/incubation/incubator.js +9 -19
- package/{lib → dist}/classes/incubation/installer.js +0 -0
- package/{lib → dist}/classes/initrd.js +0 -0
- package/{lib → dist}/classes/keyboards.js +0 -0
- package/{lib → dist}/classes/locales.js +0 -0
- package/{lib → dist}/classes/n8.js +0 -0
- package/dist/classes/network.js +99 -0
- package/{lib → dist}/classes/ovary.js +0 -0
- package/{lib → dist}/classes/pacman.js +16 -1
- package/{lib → dist}/classes/pve-live.js +0 -0
- package/dist/classes/pxe.js +337 -0
- package/{lib → dist}/classes/settings.js +0 -0
- package/{lib → dist}/classes/sources_list.js +0 -0
- package/{lib → dist}/classes/systemctl.js +0 -0
- package/{lib → dist}/classes/tailor.js +0 -0
- package/{lib → dist}/classes/tools.js +0 -0
- package/{lib → dist}/classes/users.js +0 -0
- package/{lib → dist}/classes/utils.js +82 -17
- package/{lib → dist}/classes/xdg.js +24 -26
- package/{lib → dist}/classes/yolk.js +0 -0
- package/{lib → dist}/commands/adapt.js +0 -0
- package/{lib → dist}/commands/analyze.js +0 -0
- package/{lib → dist}/commands/calamares.js +0 -0
- package/{lib → dist}/commands/config.js +0 -0
- package/dist/commands/cuckoo.js +63 -0
- package/{lib → dist}/commands/dad.js +0 -0
- package/{lib → dist}/commands/export/deb.js +0 -0
- package/{lib → dist}/commands/export/docs.js +0 -0
- package/{lib → dist}/commands/export/iso.js +0 -0
- package/{lib → dist}/commands/install.js +26 -5
- package/{lib → dist}/commands/kill.js +0 -0
- package/{lib → dist}/commands/mom.js +0 -0
- package/{lib → dist}/commands/produce.js +0 -0
- package/{lib → dist}/commands/status.js +0 -0
- package/{lib → dist}/commands/syncfrom.js +0 -0
- package/{lib → dist}/commands/syncto.js +0 -0
- package/{lib → dist}/commands/tools/clean.js +0 -0
- package/{lib → dist}/commands/tools/skel.js +0 -0
- package/{lib → dist}/commands/tools/stat.js +0 -0
- package/{lib → dist}/commands/tools/yolk.js +0 -0
- package/{lib → dist}/commands/update.js +0 -0
- package/{lib → dist}/commands/wardrobe/get.js +0 -0
- package/{lib → dist}/commands/wardrobe/ironing.js +0 -0
- package/{lib → dist}/commands/wardrobe/list.js +0 -0
- package/{lib → dist}/commands/wardrobe/show.js +0 -0
- package/{lib → dist}/commands/wardrobe/wear.js +0 -0
- package/{lib → dist}/components/elements/information.js +0 -0
- package/{lib → dist}/components/elements/steps.js +0 -0
- package/{lib → dist}/components/elements/title.js +0 -0
- package/{lib → dist}/components/finished.js +0 -0
- package/{lib → dist}/components/install.js +0 -0
- package/{lib → dist}/components/keyboard.js +0 -0
- package/{lib → dist}/components/location.js +0 -0
- package/{lib → dist}/components/network.js +0 -0
- package/{lib → dist}/components/partitions.js +0 -0
- package/{lib → dist}/components/summary.js +2 -2
- package/{lib → dist}/components/users.js +0 -0
- package/{lib → dist}/components/welcome.js +0 -0
- package/dist/dhcpd/dhcpd.js +222 -0
- package/dist/dhcpd/index.js +7 -0
- package/dist/dhcpd/packet/converters.js +377 -0
- package/dist/dhcpd/packet/options.js +2 -0
- package/dist/dhcpd/packet/types.js +2 -0
- package/dist/dhcpd/packet.js +251 -0
- package/dist/dhcpd/proxy.js +152 -0
- package/dist/dhcpd/server.js +152 -0
- package/dist/dhcpd/sprintf.js +170 -0
- package/dist/dhcpd/utils.js +190 -0
- package/{lib → dist}/index.js +0 -0
- package/{lib → dist}/interfaces/i-addons.js +0 -0
- package/{lib → dist}/interfaces/i-analyze.js +0 -0
- package/{lib → dist}/interfaces/i-app.js +0 -0
- package/{lib → dist}/interfaces/i-branding.js +0 -0
- package/{lib → dist}/interfaces/i-config-tools.js +0 -0
- package/{lib → dist}/interfaces/i-devices.js +0 -0
- package/{lib → dist}/interfaces/i-distro.js +0 -0
- package/{lib → dist}/interfaces/i-drive-list.js +0 -0
- package/{lib → dist}/interfaces/i-eggs-config.js +0 -0
- package/{lib → dist}/interfaces/i-exec.js +0 -0
- package/{lib → dist}/interfaces/i-initrd.js +0 -0
- package/{lib → dist}/interfaces/i-install.js +0 -0
- package/{lib → dist}/interfaces/i-installer.js +0 -0
- package/{lib → dist}/interfaces/i-krill-config.js +0 -0
- package/{lib → dist}/interfaces/i-krill.js +0 -0
- package/{lib → dist}/interfaces/i-materia.js +0 -0
- package/{lib → dist}/interfaces/i-net.js +0 -0
- package/{lib → dist}/interfaces/i-packages.js +0 -0
- package/{lib → dist}/interfaces/i-partitions.js +0 -0
- package/{lib/interfaces/i-remix.js → dist/interfaces/i-pxe-options.js} +0 -0
- package/{lib/interfaces/i-settings.js → dist/interfaces/i-remix.js} +0 -0
- package/{lib/interfaces/i-user.js → dist/interfaces/i-settings.js} +0 -0
- package/{lib/interfaces/i-workdir.js → dist/interfaces/i-user.js} +0 -0
- package/{lib/interfaces/i-xkb-model.js → dist/interfaces/i-workdir.js} +0 -0
- package/{lib/interfaces/index.js → dist/interfaces/i-xkb-model.js} +0 -0
- package/dist/interfaces/index.js +2 -0
- package/{lib → dist}/krill/krill-prepare.js +20 -4
- package/{lib → dist}/krill/krill-sequence.js +64 -62
- package/{lib → dist}/krill/modules/add-user.js +0 -0
- package/{lib → dist}/krill/modules/bootloader-config-ubuntu.js +0 -0
- package/{lib → dist}/krill/modules/bootloader-config.js +1 -1
- package/{lib → dist}/krill/modules/bootloader.js +0 -5
- package/{lib → dist}/krill/modules/change-password.js +0 -0
- package/{lib → dist}/krill/modules/del-live-user.js +0 -0
- package/{lib → dist}/krill/modules/fstab.js +0 -0
- package/{lib → dist}/krill/modules/grubcfg.js +0 -0
- package/{lib → dist}/krill/modules/hostname.js +2 -2
- package/{lib → dist}/krill/modules/initramfs-cfg.js +0 -0
- package/{lib → dist}/krill/modules/initramfs.js +0 -0
- package/{lib → dist}/krill/modules/locale-cfg.js +0 -0
- package/{lib → dist}/krill/modules/locale.js +1 -1
- package/{lib/krill/modules/set-keyboard.js → dist/krill/modules/m-keyboard.js} +7 -3
- package/{lib/krill/modules/set-timezone.js → dist/krill/modules/m-timezone.js} +2 -2
- package/{lib → dist}/krill/modules/machine-id.js +0 -0
- package/{lib → dist}/krill/modules/mkfs.js +0 -0
- package/{lib → dist}/krill/modules/mount-fs.js +0 -0
- package/{lib → dist}/krill/modules/mount-vfs.js +0 -0
- package/{lib → dist}/krill/modules/network-cfg.js +0 -0
- package/{lib → dist}/krill/modules/packages.js +0 -0
- package/{lib → dist}/krill/modules/partition.js +1 -1
- package/{lib → dist}/krill/modules/remove-installer-link.js +0 -0
- package/{lib → dist}/krill/modules/umount.js +0 -0
- package/{lib → dist}/krill/modules/unpackfs.js +0 -0
- package/{lib → dist}/lib/cli-autologin.js +0 -0
- package/{lib → dist}/lib/dependencies.js +0 -0
- package/{lib → dist}/lib/get_address.js +0 -0
- package/{lib → dist}/lib/get_dns.js +0 -0
- package/{lib → dist}/lib/get_domain.js +0 -0
- package/{lib → dist}/lib/get_gateway.js +0 -0
- package/{lib → dist}/lib/get_hostname.js +0 -0
- package/{lib → dist}/lib/get_netmask.js +0 -0
- package/{lib → dist}/lib/get_password.js +0 -0
- package/{lib → dist}/lib/get_root_password.js +0 -0
- package/{lib → dist}/lib/get_userfullname.js +0 -0
- package/{lib → dist}/lib/get_username.js +0 -0
- package/{lib → dist}/lib/select_address_type.js +0 -0
- package/{lib → dist}/lib/select_filesystem_type.js +0 -0
- package/{lib → dist}/lib/select_installation_device.js +0 -0
- package/{lib → dist}/lib/select_installation_mode.js +0 -0
- package/{lib → dist}/lib/select_interface.js +0 -0
- package/{lib → dist}/lib/select_keyboard_layout.js +0 -0
- package/{lib → dist}/lib/select_keyboard_model.js +0 -0
- package/{lib → dist}/lib/select_keyboard_option.js +0 -0
- package/{lib → dist}/lib/select_keyboard_variant.js +0 -0
- package/{lib → dist}/lib/select_languages.js +0 -0
- package/{lib → dist}/lib/select_regions.js +0 -0
- package/{lib → dist}/lib/select_user_swap_choice.js +0 -0
- package/{lib → dist}/lib/select_zones.js +0 -0
- package/{lib → dist}/lib/utils.js +1 -2
- package/ipxe/ipxe.efi +0 -0
- package/package.json +20 -17
- package/scripts/_eggs +11 -7
- package/scripts/eggs.bash +2 -2
- package/lib/classes/bleach.d.ts +0 -40
- package/lib/classes/compressors.d.ts +0 -24
- package/lib/classes/daddy.d.ts +0 -11
- package/lib/classes/distro.d.ts +0 -31
- package/lib/classes/family/archlinux.d.ts +0 -69
- package/lib/classes/family/debian.d.ts +0 -68
- package/lib/classes/family/fedora.d.ts +0 -63
- package/lib/classes/family/suse.d.ts +0 -63
- package/lib/classes/incubation/branding.d.ts +0 -8
- package/lib/classes/incubation/distros/bionic.d.ts +0 -29
- package/lib/classes/incubation/distros/buster.d.ts +0 -31
- package/lib/classes/incubation/distros/focal.d.ts +0 -29
- package/lib/classes/incubation/distros/jessie.d.ts +0 -32
- package/lib/classes/incubation/distros/rolling.d.ts +0 -31
- package/lib/classes/incubation/fisherman-helper/displaymanager.d.ts +0 -7
- package/lib/classes/incubation/fisherman-helper/packages.d.ts +0 -19
- package/lib/classes/incubation/fisherman.d.ts +0 -77
- package/lib/classes/incubation/incubator.d.ts +0 -35
- package/lib/classes/incubation/installer.d.ts +0 -15
- package/lib/classes/initrd.d.ts +0 -42
- package/lib/classes/keyboards.d.ts +0 -43
- package/lib/classes/locales.d.ts +0 -14
- package/lib/classes/n8.d.ts +0 -16
- package/lib/classes/ovary.d.ts +0 -179
- package/lib/classes/pacman.d.ts +0 -164
- package/lib/classes/pve-live.d.ts +0 -42
- package/lib/classes/pxe.d.ts +0 -64
- package/lib/classes/pxe.js +0 -376
- package/lib/classes/settings.d.ts +0 -55
- package/lib/classes/sources_list.d.ts +0 -27
- package/lib/classes/systemctl.d.ts +0 -46
- package/lib/classes/tailor.d.ts +0 -43
- package/lib/classes/tools.d.ts +0 -29
- package/lib/classes/users.d.ts +0 -21
- package/lib/classes/utils.d.ts +0 -299
- package/lib/classes/xdg.d.ts +0 -44
- package/lib/classes/yolk.d.ts +0 -26
- package/lib/commands/adapt.d.ts +0 -9
- package/lib/commands/analyze.d.ts +0 -25
- package/lib/commands/calamares.d.ts +0 -26
- package/lib/commands/config.d.ts +0 -34
- package/lib/commands/cuckoo.d.ts +0 -24
- package/lib/commands/cuckoo.js +0 -70
- package/lib/commands/dad.d.ts +0 -17
- package/lib/commands/export/deb.d.ts +0 -14
- package/lib/commands/export/docs.d.ts +0 -8
- package/lib/commands/export/iso.d.ts +0 -13
- package/lib/commands/install.d.ts +0 -26
- package/lib/commands/kill.d.ts +0 -20
- package/lib/commands/mom.d.ts +0 -14
- package/lib/commands/produce.d.ts +0 -28
- package/lib/commands/status.d.ts +0 -18
- package/lib/commands/syncfrom.d.ts +0 -42
- package/lib/commands/syncto.d.ts +0 -67
- package/lib/commands/tools/clean.d.ts +0 -15
- package/lib/commands/tools/skel.d.ts +0 -17
- package/lib/commands/tools/stat.d.ts +0 -14
- package/lib/commands/tools/yolk.d.ts +0 -23
- package/lib/commands/update.d.ts +0 -46
- package/lib/commands/wardrobe/get.d.ts +0 -17
- package/lib/commands/wardrobe/ironing.d.ts +0 -18
- package/lib/commands/wardrobe/list.d.ts +0 -17
- package/lib/commands/wardrobe/show.d.ts +0 -19
- package/lib/commands/wardrobe/wear.d.ts +0 -21
- package/lib/components/elements/information.d.ts +0 -4
- package/lib/components/elements/steps.d.ts +0 -6
- package/lib/components/elements/title.d.ts +0 -4
- package/lib/components/finished.d.ts +0 -8
- package/lib/components/install.d.ts +0 -8
- package/lib/components/keyboard.d.ts +0 -12
- package/lib/components/location.d.ts +0 -12
- package/lib/components/network.d.ts +0 -12
- package/lib/components/partitions.d.ts +0 -9
- package/lib/components/summary.d.ts +0 -16
- package/lib/components/users.d.ts +0 -20
- package/lib/components/welcome.d.ts +0 -6
- package/lib/index.d.ts +0 -1
- package/lib/interfaces/i-addons.d.ts +0 -8
- package/lib/interfaces/i-analyze.d.ts +0 -13
- package/lib/interfaces/i-app.d.ts +0 -7
- package/lib/interfaces/i-branding.d.ts +0 -29
- package/lib/interfaces/i-config-tools.d.ts +0 -11
- package/lib/interfaces/i-devices.d.ts +0 -13
- package/lib/interfaces/i-distro.d.ts +0 -19
- package/lib/interfaces/i-drive-list.d.ts +0 -29
- package/lib/interfaces/i-eggs-config.d.ts +0 -24
- package/lib/interfaces/i-exec.d.ts +0 -4
- package/lib/interfaces/i-initrd.d.ts +0 -6
- package/lib/interfaces/i-install.d.ts +0 -9
- package/lib/interfaces/i-installer.d.ts +0 -20
- package/lib/interfaces/i-krill-config.d.ts +0 -26
- package/lib/interfaces/i-krill.d.ts +0 -35
- package/lib/interfaces/i-materia.d.ts +0 -36
- package/lib/interfaces/i-net.d.ts +0 -9
- package/lib/interfaces/i-packages.d.ts +0 -10
- package/lib/interfaces/i-partitions.d.ts +0 -9
- package/lib/interfaces/i-remix.d.ts +0 -14
- package/lib/interfaces/i-settings.d.ts +0 -10
- package/lib/interfaces/i-user.d.ts +0 -7
- package/lib/interfaces/i-workdir.d.ts +0 -8
- package/lib/interfaces/i-xkb-model.d.ts +0 -17
- package/lib/interfaces/index.d.ts +0 -17
- package/lib/krill/krill-prepare.d.ts +0 -60
- package/lib/krill/krill-sequence.d.ts +0 -150
- package/lib/krill/modules/add-user.d.ts +0 -15
- package/lib/krill/modules/bootloader-config-arch.d.ts +0 -9
- package/lib/krill/modules/bootloader-config-arch.js +0 -13
- package/lib/krill/modules/bootloader-config-ubuntu.d.ts +0 -9
- package/lib/krill/modules/bootloader-config.d.ts +0 -9
- package/lib/krill/modules/bootloader.d.ts +0 -10
- package/lib/krill/modules/change-password.d.ts +0 -10
- package/lib/krill/modules/del-live-user.d.ts +0 -9
- package/lib/krill/modules/fstab.d.ts +0 -14
- package/lib/krill/modules/grubcfg.d.ts +0 -17
- package/lib/krill/modules/hostname.d.ts +0 -13
- package/lib/krill/modules/initramfs-cfg.d.ts +0 -14
- package/lib/krill/modules/initramfs.d.ts +0 -13
- package/lib/krill/modules/locale-cfg.d.ts +0 -10
- package/lib/krill/modules/locale.d.ts +0 -13
- package/lib/krill/modules/machine-id.d.ts +0 -15
- package/lib/krill/modules/mkfs.d.ts +0 -13
- package/lib/krill/modules/mount-fs.d.ts +0 -17
- package/lib/krill/modules/mount-vfs.d.ts +0 -17
- package/lib/krill/modules/network-cfg.d.ts +0 -19
- package/lib/krill/modules/packages.d.ts +0 -14
- package/lib/krill/modules/partition.d.ts +0 -20
- package/lib/krill/modules/remove-installer-link.d.ts +0 -13
- package/lib/krill/modules/set-keyboard.d.ts +0 -10
- package/lib/krill/modules/set-timezone.d.ts +0 -14
- package/lib/krill/modules/umount.d.ts +0 -14
- package/lib/krill/modules/unpackfs.d.ts +0 -13
- package/lib/lib/cli-autologin.d.ts +0 -27
- package/lib/lib/dependencies.d.ts +0 -49
- package/lib/lib/get_address.d.ts +0 -1
- package/lib/lib/get_dns.d.ts +0 -1
- package/lib/lib/get_domain.d.ts +0 -1
- package/lib/lib/get_gateway.d.ts +0 -1
- package/lib/lib/get_hostname.d.ts +0 -1
- package/lib/lib/get_netmask.d.ts +0 -1
- package/lib/lib/get_password.d.ts +0 -1
- package/lib/lib/get_root_password.d.ts +0 -1
- package/lib/lib/get_userfullname.d.ts +0 -1
- package/lib/lib/get_username.d.ts +0 -1
- package/lib/lib/select_address_type.d.ts +0 -1
- package/lib/lib/select_filesystem_type.d.ts +0 -1
- package/lib/lib/select_installation_device.d.ts +0 -1
- package/lib/lib/select_installation_mode.d.ts +0 -1
- package/lib/lib/select_interface.d.ts +0 -1
- package/lib/lib/select_keyboard_layout.d.ts +0 -4
- package/lib/lib/select_keyboard_model.d.ts +0 -4
- package/lib/lib/select_keyboard_option.d.ts +0 -4
- package/lib/lib/select_keyboard_variant.d.ts +0 -4
- package/lib/lib/select_languages.d.ts +0 -1
- package/lib/lib/select_regions.d.ts +0 -1
- package/lib/lib/select_user_swap_choice.d.ts +0 -1
- package/lib/lib/select_zones.d.ts +0 -1
- package/lib/lib/utils.d.ts +0 -43
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":"9.2.9","commands":{"adapt":{"id":"adapt","description":"adapt monitor resolution for VM only","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[]},"analyze":{"id":"analyze","description":"analyze for syncto","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"examples":["$ sudo eggs analyze"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[]},"calamares":{"id":"calamares","description":"calamares or install or configure it","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"examples":["~$ sudo eggs calamares \ncreate/renew calamares configuration's files\n","~$ sudo eggs calamares -i \ninstall calamares and create it's configuration's files\n"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false},"install":{"name":"install","type":"boolean","char":"i","description":"install calamares and it's dependencies","allowNo":false},"release":{"name":"release","type":"boolean","char":"r","description":"release: remove calamares and all it's dependencies after the installation","allowNo":false},"remove":{"name":"remove","type":"boolean","description":"remove calamares and it's dependencies","allowNo":false},"theme":{"name":"theme","type":"option","description":"theme/branding for eggs and calamares","multiple":false}},"args":[]},"config":{"id":"config","description":"Configure and install prerequisites deb packages to run it","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"examples":["~$ sudo eggs config\nConfigure and install prerequisites deb packages to run it"],"flags":{"nointeractive":{"name":"nointeractive","type":"boolean","char":"n","description":"assume yes","allowNo":false},"clean":{"name":"clean","type":"boolean","char":"c","description":"remove old configuration before to create new one","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[]},"cuckoo":{"id":"cuckoo","description":"PXE start with proxy-dhcp","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"examples":["$ sudo eggs cuckoo\nstart a PXE server with dhcp-proxy (can coexists with a real dhcp server)\n"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[]},"dad":{"id":"dad","description":"ask help from daddy - configuration helper","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"clean":{"name":"clean","type":"boolean","char":"c","description":"remove old configuration before to create","allowNo":false},"default":{"name":"default","type":"boolean","char":"d","description":"remove old configuration and force default","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false}},"args":[]},"install":{"id":"install","description":"command-line system installer - the egg became a penguin!","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"examples":["$ eggs install\nInstall the system using krill installer\n"],"flags":{"unattended":{"name":"unattended","type":"boolean","char":"u","description":"Unattended installation","allowNo":false},"ip":{"name":"ip","type":"boolean","char":"i","description":"hostname as ip, eg: ip-192-168-1-33","allowNo":false},"random":{"name":"random","type":"boolean","char":"r","description":"Add random to hostname, eg: colibri-ay412dt","allowNo":false},"domain":{"name":"domain","type":"option","char":"d","description":"Domain name, defult: .local","multiple":false},"suspend":{"name":"suspend","type":"boolean","char":"S","description":"Swap suspend: RAM x 2","allowNo":false},"small":{"name":"small","type":"boolean","char":"s","description":"Swap small: RAM","allowNo":false},"none":{"name":"none","type":"boolean","char":"n","description":"Swap none: 256M","allowNo":false},"crypted":{"name":"crypted","type":"boolean","char":"k","description":"Crypted CLI installation","allowNo":false},"pve":{"name":"pve","type":"boolean","char":"p","description":"Proxmox VE install","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"Verbose","allowNo":false}},"args":[]},"kill":{"id":"kill","description":"kill the eggs/free the nest","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"examples":["$ eggs kill\nkill the eggs/free the nest"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[]},"mom":{"id":"mom","description":"ask for mommy - gui helper","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[]},"produce":{"id":"produce","description":"produce a live image from your system whithout your data","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"examples":["$ sudo eggs produce \nproduce an ISO called [hostname]-[arch]-YYYY-MM-DD_HHMM.iso, compressed xz (standard compression).\nIf hostname=ugo and arch=i386 ugo-x86-2020-08-25_1215.iso\n","$ sudo eggs produce -v\nsame as previuos, but with --verbose output\n","$ sudo eggs produce -vf\nsame as previuos, compression zstd, lz4 or gzip (depend from system capability)\n","$ sudo eggs produce -vm\nsame as previuos, compression xz -Xbcj x86 (max compression, about 10%\nmore compressed)\n","$ sudo eggs produce -vf --basename leo --theme debian --addons adapt \nproduce an ISO called leo-i386-2020-08-25_1215.iso compression fast,\nusing Debian theme and link to adapt\n","$ sudo eggs produce -v --basename leo --theme debian --addons rsupport \nproduce an ISO called leo-i386-2020-08-25_1215.iso compression xz,\nusing Debian theme and link to dwagent\n","$ sudo eggs produce -v --basename leo --rsupport \nproduce an ISO called leo-i386-2020-08-25_1215.iso compression xz, using eggs\ntheme and link to dwagent\n","$ sudo eggs produce -vs --basename leo --rsupport \nproduce scripts to build an ISO as the previus example. Scripts can be found\nin /home/eggs/ovarium and you can customize all you need\n"],"flags":{"prefix":{"name":"prefix","type":"option","char":"p","description":"prefix","multiple":false},"basename":{"name":"basename","type":"option","description":"basename","multiple":false},"backup":{"name":"backup","type":"boolean","char":"b","description":"backup mode (CRYPTED)","allowNo":false},"clone":{"name":"clone","type":"boolean","char":"c","description":"clone mode","allowNo":false},"fast":{"name":"fast","type":"boolean","char":"f","description":"fast compression","allowNo":false},"normal":{"name":"normal","type":"boolean","char":"n","description":"normal compression","allowNo":false},"max":{"name":"max","type":"boolean","char":"m","description":"max compression","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false},"yolk":{"name":"yolk","type":"boolean","char":"y","description":"-y force yolk renew","allowNo":false},"script":{"name":"script","type":"boolean","char":"s","description":"script mode. Generate scripts to manage iso build","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"theme":{"name":"theme","type":"option","description":"theme for livecd, calamares branding and partitions","multiple":false},"addons":{"name":"addons","type":"option","description":"addons to be used: adapt, ichoice, pve, rsupport","multiple":true},"release":{"name":"release","type":"boolean","description":"release: max compression, remove penguins-eggs and calamares after installation","allowNo":false}},"args":[]},"status":{"id":"status","description":"informations about eggs status","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[]},"syncfrom":{"id":"syncfrom","description":"restore users and user data from a LUKS volumes","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"examples":["$ sudo eggs restore"],"flags":{"delete":{"name":"delete","type":"option","description":"rsync --delete delete extraneous files from dest dirs","multiple":false},"file":{"name":"file","type":"option","char":"f","description":"file LUKS volume encrypted","multiple":false},"rootdir":{"name":"rootdir","type":"option","char":"r","description":"rootdir of the installed system, when used from live","multiple":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[]},"syncto":{"id":"syncto","description":"saves users and user data in a LUKS volume inside the iso","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"examples":["$ sudo eggs syncto"],"flags":{"delete":{"name":"delete","type":"option","description":"rsync --delete delete extraneous files from dest dirs","multiple":false},"file":{"name":"file","type":"option","char":"f","description":"file LUKS volume encrypted","multiple":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[]},"update":{"id":"update","description":"update the penguin's eggs tool","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"examples":["$ eggs update\nupdate/upgrade the penguin's eggs tool"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[]},"export:deb":{"id":"export:deb","description":"export deb/docs/iso to the destination host","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"clean":{"name":"clean","type":"boolean","char":"c","description":"remove old .deb before to copy","allowNo":false},"amd64":{"name":"amd64","type":"boolean","description":"export amd64 arch","allowNo":false},"i386":{"name":"i386","type":"boolean","description":"export i386 arch","allowNo":false},"armel":{"name":"armel","type":"boolean","description":"export armel arch","allowNo":false},"arm64":{"name":"arm64","type":"boolean","description":"export arm64 arch","allowNo":false},"all":{"name":"all","type":"boolean","char":"a","description":"export all archs","allowNo":false}},"args":[]},"export:docs":{"id":"export:docs","description":"remove and export docType documentation of the sources in the destination host","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[]},"export:iso":{"id":"export:iso","description":"export iso in the destination host","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"backup":{"name":"backup","type":"boolean","char":"b","description":"export backup ISOs","allowNo":false},"clean":{"name":"clean","type":"boolean","char":"c","description":"delete old ISOs before to copy","allowNo":false}},"args":[]},"tools:clean":{"id":"tools:clean","description":"clean system log, apt, etc","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","description":"verbose","allowNo":false}},"args":[]},"tools:skel":{"id":"tools:skel","description":"update skel from home configuration","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"examples":["$ eggs skel --user mauro\ndesktop configuration of user mauro will get used as default"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"user":{"name":"user","type":"option","char":"u","description":"user to be used","multiple":false},"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false}},"args":[]},"tools:stat":{"id":"tools:stat","description":"get statistics from sourceforge","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"month":{"name":"month","type":"boolean","char":"m","description":"current month","allowNo":false},"year":{"name":"year","type":"boolean","char":"y","description":"current year","allowNo":false}},"args":[]},"tools:yolk":{"id":"tools:yolk","description":"configure eggs to install without internet","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"examples":["$ eggs yolk -v"],"flags":{"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false}},"args":[],"dir":"/var/local/yolk"},"wardrobe:get":{"id":"wardrobe:get","description":"get warorobe","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[{"name":"repo","description":"repository to get","required":false}]},"wardrobe:ironing":{"id":"wardrobe:ironing","description":"ordered show of costumes or accessories in wardrobe","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"wardrobe":{"name":"wardrobe","type":"option","char":"w","description":"wardrobe","multiple":false},"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[{"name":"costume","description":"costume","required":false}]},"wardrobe:list":{"id":"wardrobe:list","description":"list costumes and accessoires in wardrobe","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[{"name":"wardrobe","description":"wardrobe","required":false}]},"wardrobe:show":{"id":"wardrobe:show","description":"show costumes/accessories in wardrobe","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"wardrobe":{"name":"wardrobe","type":"option","char":"w","description":"wardrobe","multiple":false},"json":{"name":"json","type":"boolean","char":"j","description":"output JSON","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[{"name":"costume","description":"costume","required":false}]},"wardrobe:wear":{"id":"wardrobe:wear","description":"wear costume/accessories from wardrobe","strict":true,"pluginName":"penguins-eggs","pluginAlias":"penguins-eggs","pluginType":"core","aliases":[],"flags":{"wardrobe":{"name":"wardrobe","type":"option","char":"w","description":"wardrobe","multiple":false},"no_accessories":{"name":"no_accessories","type":"boolean","char":"a","description":"not install accessories","allowNo":false},"no_firmwares":{"name":"no_firmwares","type":"boolean","char":"f","description":"not install firmwares","allowNo":false},"silent":{"name":"silent","type":"boolean","char":"s","allowNo":false},"verbose":{"name":"verbose","type":"boolean","char":"v","allowNo":false},"help":{"name":"help","type":"boolean","char":"h","description":"Show CLI help.","allowNo":false}},"args":[{"name":"costume","description":"costume","required":false}]}}}
|
package/README.md
CHANGED
|
@@ -197,7 +197,7 @@ DESCRIPTION
|
|
|
197
197
|
adapt monitor resolution for VM only
|
|
198
198
|
```
|
|
199
199
|
|
|
200
|
-
_See code: [
|
|
200
|
+
_See code: [dist/commands/adapt.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.9/dist/commands/adapt.js)_
|
|
201
201
|
|
|
202
202
|
## `eggs analyze`
|
|
203
203
|
|
|
@@ -218,7 +218,7 @@ EXAMPLES
|
|
|
218
218
|
$ sudo eggs analyze
|
|
219
219
|
```
|
|
220
220
|
|
|
221
|
-
_See code: [
|
|
221
|
+
_See code: [dist/commands/analyze.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.9/dist/commands/analyze.js)_
|
|
222
222
|
|
|
223
223
|
## `eggs autocomplete [SHELL]`
|
|
224
224
|
|
|
@@ -247,7 +247,7 @@ EXAMPLES
|
|
|
247
247
|
$ eggs autocomplete --refresh-cache
|
|
248
248
|
```
|
|
249
249
|
|
|
250
|
-
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v1.3.
|
|
250
|
+
_See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v1.3.2/src/commands/autocomplete/index.ts)_
|
|
251
251
|
|
|
252
252
|
## `eggs calamares`
|
|
253
253
|
|
|
@@ -276,7 +276,7 @@ EXAMPLES
|
|
|
276
276
|
install calamares and create it's configuration's files
|
|
277
277
|
```
|
|
278
278
|
|
|
279
|
-
_See code: [
|
|
279
|
+
_See code: [dist/commands/calamares.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.9/dist/commands/calamares.js)_
|
|
280
280
|
|
|
281
281
|
## `eggs config`
|
|
282
282
|
|
|
@@ -300,30 +300,28 @@ EXAMPLES
|
|
|
300
300
|
Configure and install prerequisites deb packages to run it
|
|
301
301
|
```
|
|
302
302
|
|
|
303
|
-
_See code: [
|
|
303
|
+
_See code: [dist/commands/config.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.9/dist/commands/config.js)_
|
|
304
304
|
|
|
305
305
|
## `eggs cuckoo`
|
|
306
306
|
|
|
307
|
-
|
|
307
|
+
PXE start with proxy-dhcp
|
|
308
308
|
|
|
309
309
|
```
|
|
310
310
|
USAGE
|
|
311
|
-
$ eggs cuckoo [-
|
|
311
|
+
$ eggs cuckoo [-h]
|
|
312
312
|
|
|
313
313
|
FLAGS
|
|
314
|
-
-h, --help
|
|
315
|
-
-r, --real start a real dhcp server
|
|
316
|
-
-v, --verbose verbose
|
|
314
|
+
-h, --help Show CLI help.
|
|
317
315
|
|
|
318
316
|
DESCRIPTION
|
|
319
|
-
|
|
317
|
+
PXE start with proxy-dhcp
|
|
320
318
|
|
|
321
319
|
EXAMPLES
|
|
322
320
|
$ sudo eggs cuckoo
|
|
323
|
-
start a PXE
|
|
321
|
+
start a PXE server with dhcp-proxy (can coexists with a real dhcp server)
|
|
324
322
|
```
|
|
325
323
|
|
|
326
|
-
_See code: [
|
|
324
|
+
_See code: [dist/commands/cuckoo.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.9/dist/commands/cuckoo.js)_
|
|
327
325
|
|
|
328
326
|
## `eggs dad`
|
|
329
327
|
|
|
@@ -343,7 +341,7 @@ DESCRIPTION
|
|
|
343
341
|
ask help from daddy - configuration helper
|
|
344
342
|
```
|
|
345
343
|
|
|
346
|
-
_See code: [
|
|
344
|
+
_See code: [dist/commands/dad.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.9/dist/commands/dad.js)_
|
|
347
345
|
|
|
348
346
|
## `eggs export deb`
|
|
349
347
|
|
|
@@ -416,7 +414,7 @@ DESCRIPTION
|
|
|
416
414
|
Display help for eggs.
|
|
417
415
|
```
|
|
418
416
|
|
|
419
|
-
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.
|
|
417
|
+
_See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.15/src/commands/help.ts)_
|
|
420
418
|
|
|
421
419
|
## `eggs install`
|
|
422
420
|
|
|
@@ -424,15 +422,20 @@ command-line system installer - the egg became a penguin!
|
|
|
424
422
|
|
|
425
423
|
```
|
|
426
424
|
USAGE
|
|
427
|
-
$ eggs install [-u] [-i] [-k] [-p] [-h] [-v]
|
|
425
|
+
$ eggs install [-u] [-i] [-r] [-d <value>] [-S] [-s] [-n] [-k] [-p] [-h] [-v]
|
|
428
426
|
|
|
429
427
|
FLAGS
|
|
430
|
-
-
|
|
431
|
-
-
|
|
432
|
-
-
|
|
433
|
-
-
|
|
434
|
-
-
|
|
435
|
-
-
|
|
428
|
+
-S, --suspend Swap suspend: RAM x 2
|
|
429
|
+
-d, --domain=<value> Domain name, defult: .local
|
|
430
|
+
-h, --help Show CLI help.
|
|
431
|
+
-i, --ip hostname as ip, eg: ip-192-168-1-33
|
|
432
|
+
-k, --crypted Crypted CLI installation
|
|
433
|
+
-n, --none Swap none: 256M
|
|
434
|
+
-p, --pve Proxmox VE install
|
|
435
|
+
-r, --random Add random to hostname, eg: colibri-ay412dt
|
|
436
|
+
-s, --small Swap small: RAM
|
|
437
|
+
-u, --unattended Unattended installation
|
|
438
|
+
-v, --verbose Verbose
|
|
436
439
|
|
|
437
440
|
DESCRIPTION
|
|
438
441
|
command-line system installer - the egg became a penguin!
|
|
@@ -442,7 +445,7 @@ EXAMPLES
|
|
|
442
445
|
Install the system using krill installer
|
|
443
446
|
```
|
|
444
447
|
|
|
445
|
-
_See code: [
|
|
448
|
+
_See code: [dist/commands/install.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.9/dist/commands/install.js)_
|
|
446
449
|
|
|
447
450
|
## `eggs kill`
|
|
448
451
|
|
|
@@ -464,7 +467,7 @@ EXAMPLES
|
|
|
464
467
|
kill the eggs/free the nest
|
|
465
468
|
```
|
|
466
469
|
|
|
467
|
-
_See code: [
|
|
470
|
+
_See code: [dist/commands/kill.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.9/dist/commands/kill.js)_
|
|
468
471
|
|
|
469
472
|
## `eggs mom`
|
|
470
473
|
|
|
@@ -481,7 +484,7 @@ DESCRIPTION
|
|
|
481
484
|
ask for mommy - gui helper
|
|
482
485
|
```
|
|
483
486
|
|
|
484
|
-
_See code: [
|
|
487
|
+
_See code: [dist/commands/mom.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.9/dist/commands/mom.js)_
|
|
485
488
|
|
|
486
489
|
## `eggs produce`
|
|
487
490
|
|
|
@@ -543,7 +546,7 @@ EXAMPLES
|
|
|
543
546
|
in /home/eggs/ovarium and you can customize all you need
|
|
544
547
|
```
|
|
545
548
|
|
|
546
|
-
_See code: [
|
|
549
|
+
_See code: [dist/commands/produce.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.9/dist/commands/produce.js)_
|
|
547
550
|
|
|
548
551
|
## `eggs status`
|
|
549
552
|
|
|
@@ -561,7 +564,7 @@ DESCRIPTION
|
|
|
561
564
|
informations about eggs status
|
|
562
565
|
```
|
|
563
566
|
|
|
564
|
-
_See code: [
|
|
567
|
+
_See code: [dist/commands/status.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.9/dist/commands/status.js)_
|
|
565
568
|
|
|
566
569
|
## `eggs syncfrom`
|
|
567
570
|
|
|
@@ -585,7 +588,7 @@ EXAMPLES
|
|
|
585
588
|
$ sudo eggs restore
|
|
586
589
|
```
|
|
587
590
|
|
|
588
|
-
_See code: [
|
|
591
|
+
_See code: [dist/commands/syncfrom.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.9/dist/commands/syncfrom.js)_
|
|
589
592
|
|
|
590
593
|
## `eggs syncto`
|
|
591
594
|
|
|
@@ -608,7 +611,7 @@ EXAMPLES
|
|
|
608
611
|
$ sudo eggs syncto
|
|
609
612
|
```
|
|
610
613
|
|
|
611
|
-
_See code: [
|
|
614
|
+
_See code: [dist/commands/syncto.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.9/dist/commands/syncto.js)_
|
|
612
615
|
|
|
613
616
|
## `eggs tools clean`
|
|
614
617
|
|
|
@@ -703,7 +706,7 @@ EXAMPLES
|
|
|
703
706
|
update/upgrade the penguin's eggs tool
|
|
704
707
|
```
|
|
705
708
|
|
|
706
|
-
_See code: [
|
|
709
|
+
_See code: [dist/commands/update.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.9/dist/commands/update.js)_
|
|
707
710
|
|
|
708
711
|
## `eggs version`
|
|
709
712
|
|
|
@@ -723,7 +726,7 @@ FLAG DESCRIPTIONS
|
|
|
723
726
|
Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.
|
|
724
727
|
```
|
|
725
728
|
|
|
726
|
-
_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v1.1.
|
|
729
|
+
_See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v1.1.3/src/commands/version.ts)_
|
|
727
730
|
|
|
728
731
|
## `eggs wardrobe get [REPO]`
|
|
729
732
|
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# Ubuntu 22.10 kinetic
|
|
2
|
+
|
|
3
|
+
It take all configuration from Ubuntu focal
|
|
4
|
+
|
|
5
|
+
Used by
|
|
6
|
+
- kinetic
|
|
7
|
+
|
|
8
|
+
ISSUES
|
|
9
|
+
* added
|
|
10
|
+
|
|
11
|
+
# This is /run/systemd/resolve/stub-resolv.conf managed by man:systemd-resolved(8).
|
|
12
|
+
# Do not edit.
|
|
13
|
+
#
|
|
14
|
+
# This file might be symlinked as /etc/resolv.conf. If you're looking at
|
|
15
|
+
# /etc/resolv.conf and seeing this text, you have followed the symlink.
|
|
16
|
+
#
|
|
17
|
+
# This is a dynamic resolv.conf file for connecting local clients to the
|
|
18
|
+
# internal DNS stub resolver of systemd-resolved. This file lists all
|
|
19
|
+
# configured search domains.
|
|
20
|
+
#
|
|
21
|
+
# Run "resolvectl status" to see details about the uplink DNS servers
|
|
22
|
+
# currently in use.
|
|
23
|
+
#
|
|
24
|
+
# Third party programs should typically not access this file directly, but only
|
|
25
|
+
# through the symlink at /etc/resolv.conf. To manage man:resolv.conf(5) in a
|
|
26
|
+
# different way, replace this symlink by a static file or a different symlink.
|
|
27
|
+
#
|
|
28
|
+
# See man:systemd-resolved.service(8) for details about the supported modes of
|
|
29
|
+
# operation for /etc/resolv.conf.
|
|
30
|
+
|
|
31
|
+
nameserver 127.0.0.53
|
|
32
|
+
options edns0 trust-ad
|
|
33
|
+
search .
|
|
34
|
+
|
|
35
|
+
ls /etc/resolv.conf -l
|
|
36
|
+
lrwxrwxrwx 1 root root 39 apr 27 07:49 /etc/resolv.conf -> ../run/systemd/resolve/stub-resolv.conf
|
|
37
|
+
|
|
38
|
+
quindi:
|
|
39
|
+
|
|
40
|
+
ln -s /run/systemd/resolve/stub-resolv.conf /etc/resolv.conf
|
|
41
|
+
|
package/conf/tools.yaml
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -18,14 +18,9 @@
|
|
|
18
18
|
*
|
|
19
19
|
* Ubuntu 16.04 (xenial) LTS active
|
|
20
20
|
* Ubuntu 18.04 (bionic) LTS active
|
|
21
|
-
* Ubuntu 18.10 (cosmic) expired
|
|
22
|
-
* Ubuntu 19.04 (disco) expired
|
|
23
|
-
* Ubuntu 19.10 (eoan) expired
|
|
24
21
|
* Ubuntu 20.04 (focal) LTS active
|
|
25
|
-
* Ubuntu 20.10 (groovy) active
|
|
26
|
-
* Ubuntu 21.04 (hirsute) active
|
|
27
|
-
* Ubuntu 21.10 (impish) active
|
|
28
22
|
* Ubuntu 22.04 (jammy) LTS
|
|
23
|
+
* Ubuntu 22.10 (kinetic)
|
|
29
24
|
*
|
|
30
25
|
* Arch
|
|
31
26
|
* Manjaro Qonos
|
|
@@ -53,6 +48,7 @@ class Distro {
|
|
|
53
48
|
this.isolinuxPath = '';
|
|
54
49
|
this.syslinuxPath = '';
|
|
55
50
|
this.pxelinuxPath = '';
|
|
51
|
+
this.memdiskPath = '';
|
|
56
52
|
this.liveMediumPath = `/run/live/medium/`;
|
|
57
53
|
this.mountpointSquashFs = '';
|
|
58
54
|
this.homeUrl = '';
|
|
@@ -164,12 +160,9 @@ class Distro {
|
|
|
164
160
|
this.codenameLikeId = 'daedalus';
|
|
165
161
|
break;
|
|
166
162
|
}
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
this.codenameLikeId = 'xenial';
|
|
171
|
-
break;
|
|
172
|
-
}
|
|
163
|
+
/**
|
|
164
|
+
* Ubuntu LTS + actual
|
|
165
|
+
*/
|
|
173
166
|
case 'bionic': {
|
|
174
167
|
// Ubuntu 18.04 bionic LTS eol aprile 2023
|
|
175
168
|
this.distroLike = 'Ubuntu';
|
|
@@ -183,28 +176,16 @@ class Distro {
|
|
|
183
176
|
this.codenameLikeId = 'focal';
|
|
184
177
|
break;
|
|
185
178
|
}
|
|
186
|
-
case 'groovy': {
|
|
187
|
-
// Ubuntu 20.10 groovy
|
|
188
|
-
this.distroLike = 'Ubuntu';
|
|
189
|
-
this.codenameLikeId = 'groovy';
|
|
190
|
-
break;
|
|
191
|
-
}
|
|
192
|
-
case 'hirsute': {
|
|
193
|
-
// Ubuntu 21.04 hirsute
|
|
194
|
-
this.distroLike = 'Ubuntu';
|
|
195
|
-
this.codenameLikeId = 'hirsute';
|
|
196
|
-
break;
|
|
197
|
-
}
|
|
198
|
-
case 'impish': {
|
|
199
|
-
// Ubuntu 21.10 impish
|
|
200
|
-
this.distroLike = 'Ubuntu';
|
|
201
|
-
this.codenameLikeId = 'impish';
|
|
202
|
-
break;
|
|
203
|
-
}
|
|
204
179
|
case 'jammy': {
|
|
205
180
|
// Ubuntu 22.04 jammy
|
|
206
181
|
this.distroLike = 'Ubuntu';
|
|
207
182
|
this.codenameLikeId = 'jammy';
|
|
183
|
+
break;
|
|
184
|
+
}
|
|
185
|
+
case 'kinetic': {
|
|
186
|
+
// Ubuntu 22.10 kinetic
|
|
187
|
+
this.distroLike = 'Ubuntu';
|
|
188
|
+
this.codenameLikeId = 'kinetic';
|
|
208
189
|
// quindi le derivate...
|
|
209
190
|
break;
|
|
210
191
|
}
|
|
@@ -394,6 +375,7 @@ class Distro {
|
|
|
394
375
|
this.syslinuxPath = '/usr/lib/syslinux/modules/bios/';
|
|
395
376
|
this.pxelinuxPath = '/usr/lib/PXELINUX/';
|
|
396
377
|
this.usrLibPath = '/usr/lib/x86_64-linux-gnu/';
|
|
378
|
+
this.memdiskPath = '/usr/lib/syslinux/';
|
|
397
379
|
if (process.arch === 'ia32') {
|
|
398
380
|
this.usrLibPath = '/usr/lib/i386-linux-gnu/';
|
|
399
381
|
}
|
|
@@ -406,6 +388,8 @@ class Distro {
|
|
|
406
388
|
}
|
|
407
389
|
case 'archlinux': {
|
|
408
390
|
this.syslinuxPath = '/usr/lib/syslinux/bios/';
|
|
391
|
+
this.pxelinuxPath = this.syslinuxPath;
|
|
392
|
+
this.memdiskPath = this.syslinuxPath;
|
|
409
393
|
this.isolinuxPath = this.syslinuxPath;
|
|
410
394
|
break;
|
|
411
395
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -76,7 +76,7 @@ class Incubator {
|
|
|
76
76
|
break;
|
|
77
77
|
}
|
|
78
78
|
/**
|
|
79
|
-
*
|
|
79
|
+
* DEVUAN
|
|
80
80
|
*/
|
|
81
81
|
case 'beowulf': {
|
|
82
82
|
const beowulf = new buster_1.Buster(this.installer, this.remix, this.distro, this.user_opt, release, this.verbose);
|
|
@@ -96,34 +96,24 @@ class Incubator {
|
|
|
96
96
|
/**
|
|
97
97
|
* UBUNTU
|
|
98
98
|
*/
|
|
99
|
+
case 'bionic': {
|
|
100
|
+
const bionic = new bionic_1.Bionic(this.installer, this.remix, this.distro, this.user_opt, release, this.verbose);
|
|
101
|
+
await bionic.create();
|
|
102
|
+
break;
|
|
103
|
+
}
|
|
99
104
|
case 'focal': {
|
|
100
105
|
const focal = new focal_1.Focal(this.installer, this.remix, this.distro, this.user_opt, release, this.verbose);
|
|
101
106
|
await focal.create();
|
|
102
107
|
break;
|
|
103
108
|
}
|
|
104
|
-
case 'groovy': {
|
|
105
|
-
const groovy = new focal_1.Focal(this.installer, this.remix, this.distro, this.user_opt, release, this.verbose);
|
|
106
|
-
await groovy.create();
|
|
107
|
-
break;
|
|
108
|
-
}
|
|
109
|
-
case 'hirsute': {
|
|
110
|
-
const hirsute = new focal_1.Focal(this.installer, this.remix, this.distro, this.user_opt, release, this.verbose);
|
|
111
|
-
await hirsute.create();
|
|
112
|
-
break;
|
|
113
|
-
}
|
|
114
|
-
case 'impish': {
|
|
115
|
-
const impish = new focal_1.Focal(this.installer, this.remix, this.distro, this.user_opt, release, this.verbose);
|
|
116
|
-
await impish.create();
|
|
117
|
-
break;
|
|
118
|
-
}
|
|
119
109
|
case 'jammy': {
|
|
120
110
|
const jammy = new focal_1.Focal(this.installer, this.remix, this.distro, this.user_opt, release, this.verbose);
|
|
121
111
|
await jammy.create();
|
|
122
112
|
break;
|
|
123
113
|
}
|
|
124
|
-
case '
|
|
125
|
-
const
|
|
126
|
-
await
|
|
114
|
+
case 'kinetic': {
|
|
115
|
+
const kinetic = new focal_1.Focal(this.installer, this.remix, this.distro, this.user_opt, release, this.verbose);
|
|
116
|
+
await kinetic.create();
|
|
127
117
|
break;
|
|
128
118
|
}
|
|
129
119
|
/**
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tslib_1 = require("tslib");
|
|
4
|
+
const netmask_1 = require("netmask");
|
|
5
|
+
const os_1 = tslib_1.__importDefault(require("os"));
|
|
6
|
+
/**
|
|
7
|
+
*
|
|
8
|
+
*/
|
|
9
|
+
class Network {
|
|
10
|
+
/**
|
|
11
|
+
*
|
|
12
|
+
*/
|
|
13
|
+
constructor() {
|
|
14
|
+
this.address = '';
|
|
15
|
+
this.cidr = '';
|
|
16
|
+
this.family = '';
|
|
17
|
+
this.internal = false;
|
|
18
|
+
this.mac = '';
|
|
19
|
+
this.netmask = '';
|
|
20
|
+
this.o = {};
|
|
21
|
+
const interfaces = os_1.default.networkInterfaces();
|
|
22
|
+
let address = '';
|
|
23
|
+
if (interfaces !== undefined) {
|
|
24
|
+
for (const devName in interfaces) {
|
|
25
|
+
const iface = interfaces[devName];
|
|
26
|
+
if (iface !== undefined) {
|
|
27
|
+
for (const alias of iface) {
|
|
28
|
+
if (alias.family === 'IPv4' &&
|
|
29
|
+
alias.address !== '127.0.0.1' &&
|
|
30
|
+
!alias.internal) {
|
|
31
|
+
// take just the first!
|
|
32
|
+
if (this.address === '') {
|
|
33
|
+
this.address = alias.address;
|
|
34
|
+
}
|
|
35
|
+
if (this.cidr === '') {
|
|
36
|
+
if (alias.cidr !== null) {
|
|
37
|
+
this.cidr = alias.cidr;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
if (this.family === '') {
|
|
41
|
+
this.family = alias.family;
|
|
42
|
+
}
|
|
43
|
+
if (this.mac === '') {
|
|
44
|
+
this.mac = alias.mac;
|
|
45
|
+
}
|
|
46
|
+
if (this.netmask === '') {
|
|
47
|
+
this.netmask = alias.netmask;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* valori da netmask
|
|
55
|
+
*/
|
|
56
|
+
this.o = new netmask_1.Netmask(this.cidr);
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
base() {
|
|
60
|
+
return this.o.base;
|
|
61
|
+
}
|
|
62
|
+
broadcast() {
|
|
63
|
+
return this.o.broadcast;
|
|
64
|
+
}
|
|
65
|
+
bitmask() {
|
|
66
|
+
this.o.bitmask;
|
|
67
|
+
}
|
|
68
|
+
contains() {
|
|
69
|
+
return this.o.contains;
|
|
70
|
+
}
|
|
71
|
+
first() {
|
|
72
|
+
return this.o.first;
|
|
73
|
+
}
|
|
74
|
+
forEach() {
|
|
75
|
+
return this.o.forEach;
|
|
76
|
+
}
|
|
77
|
+
hostmask() {
|
|
78
|
+
return this.o.hostmask;
|
|
79
|
+
}
|
|
80
|
+
last() {
|
|
81
|
+
return this.o.last;
|
|
82
|
+
}
|
|
83
|
+
maskLong() {
|
|
84
|
+
return this.o.maskLong;
|
|
85
|
+
}
|
|
86
|
+
netLong() {
|
|
87
|
+
return this.o.netLong;
|
|
88
|
+
}
|
|
89
|
+
next() {
|
|
90
|
+
return this.o.next;
|
|
91
|
+
}
|
|
92
|
+
size() {
|
|
93
|
+
return this.o.size;
|
|
94
|
+
}
|
|
95
|
+
toString() {
|
|
96
|
+
return this.o.toString;
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
exports.default = Network;
|
|
File without changes
|
|
@@ -216,7 +216,7 @@ class Pacman {
|
|
|
216
216
|
return retVal;
|
|
217
217
|
}
|
|
218
218
|
/**
|
|
219
|
-
*
|
|
219
|
+
* return true if calamares is installed
|
|
220
220
|
*/
|
|
221
221
|
static async calamaresCheck() {
|
|
222
222
|
let installed = true;
|
|
@@ -587,6 +587,21 @@ class Pacman {
|
|
|
587
587
|
await (0, utils_2.exec)(`cp -r ${buster}/calamares/modules/removeuser.yml ${dest}/calamares/modules/removeuser.yml`, echo);
|
|
588
588
|
await (0, utils_2.exec)(`cp -r ${buster}/calamares/modules/unpackfs.yml ${dest}/calamares/modules/unpackfs.yml`, echo);
|
|
589
589
|
await (0, utils_2.exec)(`cp -r ${buster}/calamares/modules/displaymanager.yml ${dest}/calamares/modules/displaymanager.yml`, echo);
|
|
590
|
+
/**
|
|
591
|
+
* Ubuntu 22.10 kinetic: eredita da focal e buster
|
|
592
|
+
*/
|
|
593
|
+
}
|
|
594
|
+
else if (this.distro().codenameLikeId === 'kinetic') {
|
|
595
|
+
const dest = '/etc/penguins-eggs.d/distros/kinetic';
|
|
596
|
+
const focal = `${rootPen}/conf/distros/focal/*`;
|
|
597
|
+
await (0, utils_2.exec)(`cp -r ${focal} ${dest}`, echo);
|
|
598
|
+
await (0, utils_2.exec)(`cp -r ${buster}/calamares/calamares-modules/cleanup ${dest}/calamares/calamares-modules/cleanup`, echo);
|
|
599
|
+
await (0, utils_2.exec)(`cp -r ${buster}/calamares/calamares-modules/sources-yolk ${dest}/calamares/calamares-modules/sources-yolk`, echo);
|
|
600
|
+
await (0, utils_2.exec)(`cp -r ${buster}/calamares/calamares-modules/sources-yolk-unmount ${dest}/calamares/calamares-modules/sources-yolk-unmount`, echo);
|
|
601
|
+
await (0, utils_2.exec)(`cp -r ${buster}/calamares/modules/packages.yml ${dest}/calamares/modules/packages.yml`, echo);
|
|
602
|
+
await (0, utils_2.exec)(`cp -r ${buster}/calamares/modules/removeuser.yml ${dest}/calamares/modules/removeuser.yml`, echo);
|
|
603
|
+
await (0, utils_2.exec)(`cp -r ${buster}/calamares/modules/unpackfs.yml ${dest}/calamares/modules/unpackfs.yml`, echo);
|
|
604
|
+
await (0, utils_2.exec)(`cp -r ${buster}/calamares/modules/displaymanager.yml ${dest}/calamares/modules/displaymanager.yml`, echo);
|
|
590
605
|
/***********************************************************************************
|
|
591
606
|
* Fedora
|
|
592
607
|
**********************************************************************************/
|