penguins-eggs 9.2.5 → 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 -30
- package/conf/distros/jessie/krill/settings.yml +48 -9
- 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 +16 -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 +1 -1
- 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 +1 -1
- 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 +27 -4
- 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 +25 -6
- package/{lib → dist}/krill/krill-sequence.js +69 -77
- 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/dist/krill/modules/hostname.js +48 -0
- 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} +12 -4
- 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 +25 -14
- 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 +1 -1
- 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 -352
- 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 -25
- 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 -151
- 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/hostname.js +0 -18
- package/lib/krill/modules/hosts.d.ts +0 -14
- package/lib/krill/modules/hosts.js +0 -35
- 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,14 +422,20 @@ command-line system installer - the egg became a penguin!
|
|
|
424
422
|
|
|
425
423
|
```
|
|
426
424
|
USAGE
|
|
427
|
-
$ eggs install [-u] [-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
|
-
-
|
|
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
|
|
435
439
|
|
|
436
440
|
DESCRIPTION
|
|
437
441
|
command-line system installer - the egg became a penguin!
|
|
@@ -441,7 +445,7 @@ EXAMPLES
|
|
|
441
445
|
Install the system using krill installer
|
|
442
446
|
```
|
|
443
447
|
|
|
444
|
-
_See code: [
|
|
448
|
+
_See code: [dist/commands/install.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.9/dist/commands/install.js)_
|
|
445
449
|
|
|
446
450
|
## `eggs kill`
|
|
447
451
|
|
|
@@ -463,7 +467,7 @@ EXAMPLES
|
|
|
463
467
|
kill the eggs/free the nest
|
|
464
468
|
```
|
|
465
469
|
|
|
466
|
-
_See code: [
|
|
470
|
+
_See code: [dist/commands/kill.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.9/dist/commands/kill.js)_
|
|
467
471
|
|
|
468
472
|
## `eggs mom`
|
|
469
473
|
|
|
@@ -480,7 +484,7 @@ DESCRIPTION
|
|
|
480
484
|
ask for mommy - gui helper
|
|
481
485
|
```
|
|
482
486
|
|
|
483
|
-
_See code: [
|
|
487
|
+
_See code: [dist/commands/mom.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.9/dist/commands/mom.js)_
|
|
484
488
|
|
|
485
489
|
## `eggs produce`
|
|
486
490
|
|
|
@@ -542,7 +546,7 @@ EXAMPLES
|
|
|
542
546
|
in /home/eggs/ovarium and you can customize all you need
|
|
543
547
|
```
|
|
544
548
|
|
|
545
|
-
_See code: [
|
|
549
|
+
_See code: [dist/commands/produce.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.9/dist/commands/produce.js)_
|
|
546
550
|
|
|
547
551
|
## `eggs status`
|
|
548
552
|
|
|
@@ -560,7 +564,7 @@ DESCRIPTION
|
|
|
560
564
|
informations about eggs status
|
|
561
565
|
```
|
|
562
566
|
|
|
563
|
-
_See code: [
|
|
567
|
+
_See code: [dist/commands/status.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.9/dist/commands/status.js)_
|
|
564
568
|
|
|
565
569
|
## `eggs syncfrom`
|
|
566
570
|
|
|
@@ -584,7 +588,7 @@ EXAMPLES
|
|
|
584
588
|
$ sudo eggs restore
|
|
585
589
|
```
|
|
586
590
|
|
|
587
|
-
_See code: [
|
|
591
|
+
_See code: [dist/commands/syncfrom.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.9/dist/commands/syncfrom.js)_
|
|
588
592
|
|
|
589
593
|
## `eggs syncto`
|
|
590
594
|
|
|
@@ -607,7 +611,7 @@ EXAMPLES
|
|
|
607
611
|
$ sudo eggs syncto
|
|
608
612
|
```
|
|
609
613
|
|
|
610
|
-
_See code: [
|
|
614
|
+
_See code: [dist/commands/syncto.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.9/dist/commands/syncto.js)_
|
|
611
615
|
|
|
612
616
|
## `eggs tools clean`
|
|
613
617
|
|
|
@@ -702,7 +706,7 @@ EXAMPLES
|
|
|
702
706
|
update/upgrade the penguin's eggs tool
|
|
703
707
|
```
|
|
704
708
|
|
|
705
|
-
_See code: [
|
|
709
|
+
_See code: [dist/commands/update.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.9/dist/commands/update.js)_
|
|
706
710
|
|
|
707
711
|
## `eggs version`
|
|
708
712
|
|
|
@@ -722,7 +726,7 @@ FLAG DESCRIPTIONS
|
|
|
722
726
|
Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.
|
|
723
727
|
```
|
|
724
728
|
|
|
725
|
-
_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)_
|
|
726
730
|
|
|
727
731
|
## `eggs wardrobe get [REPO]`
|
|
728
732
|
|
|
@@ -1,8 +1,46 @@
|
|
|
1
|
-
# Debian
|
|
2
|
-
# settings
|
|
1
|
+
# Debian jessie, stretch
|
|
3
2
|
---
|
|
4
3
|
# "local" is LIBDIR/calamares/modules with settings in SHARE/calamares/modules
|
|
5
|
-
modules-search: [local, /usr/lib/calamares/modules]
|
|
4
|
+
modules-search: [ local, /usr/lib/calamares/modules ]
|
|
5
|
+
|
|
6
|
+
# If this is set to true, Calamares refers to itself as a "setup program"
|
|
7
|
+
# rather than an "installer". Defaults to the value of dont-chroot, but
|
|
8
|
+
# Calamares will complain if this is not explicitly set.
|
|
9
|
+
oem-setup: false
|
|
10
|
+
|
|
11
|
+
# If this is set to true, the "Cancel" button will be disabled entirely.
|
|
12
|
+
# The button is also hidden from view.
|
|
13
|
+
#
|
|
14
|
+
# This can be useful if when e.g. Calamares is used as a post-install
|
|
15
|
+
# configuration tool and you require the user to go through all the
|
|
16
|
+
# configuration steps.
|
|
17
|
+
#
|
|
18
|
+
# Default is false, but Calamares will complain if this is not explicitly set.
|
|
19
|
+
#
|
|
20
|
+
# YAML: boolean.
|
|
21
|
+
disable-cancel: false
|
|
22
|
+
|
|
23
|
+
# If this is set to true, the "Cancel" button will be disabled once
|
|
24
|
+
# you start the 'Installation', meaning there won't be a way to cancel
|
|
25
|
+
# the Installation until it has finished or installation has failed.
|
|
26
|
+
#
|
|
27
|
+
# Default is false, but Calamares will complain if this is not explicitly set.
|
|
28
|
+
#
|
|
29
|
+
# YAML: boolean.
|
|
30
|
+
disable-cancel-during-exec: false
|
|
31
|
+
|
|
32
|
+
# If this is set to true, then once the end of the sequence has
|
|
33
|
+
# been reached, the quit (done) button is clicked automatically
|
|
34
|
+
# and Calamares will close. Default is false: the user will see
|
|
35
|
+
# that the end of installation has been reached, and that things are ok.
|
|
36
|
+
#
|
|
37
|
+
#
|
|
38
|
+
quit-at-end: false
|
|
39
|
+
|
|
40
|
+
instances:
|
|
41
|
+
- id: cleanup
|
|
42
|
+
module: shellprocess
|
|
43
|
+
config: shellprocess_cleanup.conf
|
|
6
44
|
|
|
7
45
|
sequence:
|
|
8
46
|
# Phase 1 - prepare.
|
|
@@ -14,7 +52,7 @@ sequence:
|
|
|
14
52
|
- locale
|
|
15
53
|
- keyboard
|
|
16
54
|
- partition
|
|
17
|
-
|
|
55
|
+
{{createUsers}}users
|
|
18
56
|
- summary
|
|
19
57
|
|
|
20
58
|
# Phase 2 - install.
|
|
@@ -27,17 +65,18 @@ sequence:
|
|
|
27
65
|
- partition
|
|
28
66
|
- mount
|
|
29
67
|
- unpackfs
|
|
68
|
+
# dpkg-unsafe-io
|
|
30
69
|
- sources-yolk
|
|
31
|
-
{{
|
|
70
|
+
{{hasSystemd}}machineid
|
|
32
71
|
- fstab
|
|
33
72
|
- locale
|
|
34
73
|
- keyboard
|
|
35
74
|
- localecfg
|
|
36
|
-
|
|
37
|
-
|
|
75
|
+
{{createUsers}}users
|
|
76
|
+
{{hasDisplaymanager}}displaymanager
|
|
38
77
|
- networkcfg
|
|
39
78
|
- hwclock
|
|
40
|
-
{{
|
|
79
|
+
{{hasSystemd}}services-systemd
|
|
41
80
|
- bootloader-config
|
|
42
81
|
- grubcfg
|
|
43
82
|
- bootloader
|
|
@@ -46,6 +85,7 @@ sequence:
|
|
|
46
85
|
- plymouthcfg
|
|
47
86
|
- initramfscfg
|
|
48
87
|
- initramfs
|
|
88
|
+
# dpkg-unsafe-io-undo
|
|
49
89
|
- removeuser
|
|
50
90
|
- sources-yolk-unmount
|
|
51
91
|
- cleanup
|
|
@@ -88,4 +128,3 @@ prompt-install: false
|
|
|
88
128
|
#
|
|
89
129
|
# YAML: boolean.
|
|
90
130
|
dont-chroot: false
|
|
91
|
-
|
|
@@ -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 = '';
|
|
@@ -120,6 +116,7 @@ class Distro {
|
|
|
120
116
|
this.distroLike = 'Debian';
|
|
121
117
|
this.codenameLikeId = 'jessie';
|
|
122
118
|
this.liveMediumPath = '/lib/live/mount/medium/';
|
|
119
|
+
this.isCalamaresAvailable = false;
|
|
123
120
|
break;
|
|
124
121
|
}
|
|
125
122
|
case 'stretch': {
|
|
@@ -127,6 +124,7 @@ class Distro {
|
|
|
127
124
|
this.distroLike = 'Debian';
|
|
128
125
|
this.codenameLikeId = 'stretch';
|
|
129
126
|
this.liveMediumPath = '/lib/live/mount/medium/';
|
|
127
|
+
this.isCalamaresAvailable = false;
|
|
130
128
|
break;
|
|
131
129
|
}
|
|
132
130
|
case 'buster': {
|
|
@@ -162,12 +160,9 @@ class Distro {
|
|
|
162
160
|
this.codenameLikeId = 'daedalus';
|
|
163
161
|
break;
|
|
164
162
|
}
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
this.codenameLikeId = 'xenial';
|
|
169
|
-
break;
|
|
170
|
-
}
|
|
163
|
+
/**
|
|
164
|
+
* Ubuntu LTS + actual
|
|
165
|
+
*/
|
|
171
166
|
case 'bionic': {
|
|
172
167
|
// Ubuntu 18.04 bionic LTS eol aprile 2023
|
|
173
168
|
this.distroLike = 'Ubuntu';
|
|
@@ -181,28 +176,16 @@ class Distro {
|
|
|
181
176
|
this.codenameLikeId = 'focal';
|
|
182
177
|
break;
|
|
183
178
|
}
|
|
184
|
-
case 'groovy': {
|
|
185
|
-
// Ubuntu 20.10 groovy
|
|
186
|
-
this.distroLike = 'Ubuntu';
|
|
187
|
-
this.codenameLikeId = 'groovy';
|
|
188
|
-
break;
|
|
189
|
-
}
|
|
190
|
-
case 'hirsute': {
|
|
191
|
-
// Ubuntu 21.04 hirsute
|
|
192
|
-
this.distroLike = 'Ubuntu';
|
|
193
|
-
this.codenameLikeId = 'hirsute';
|
|
194
|
-
break;
|
|
195
|
-
}
|
|
196
|
-
case 'impish': {
|
|
197
|
-
// Ubuntu 21.10 impish
|
|
198
|
-
this.distroLike = 'Ubuntu';
|
|
199
|
-
this.codenameLikeId = 'impish';
|
|
200
|
-
break;
|
|
201
|
-
}
|
|
202
179
|
case 'jammy': {
|
|
203
180
|
// Ubuntu 22.04 jammy
|
|
204
181
|
this.distroLike = 'Ubuntu';
|
|
205
182
|
this.codenameLikeId = 'jammy';
|
|
183
|
+
break;
|
|
184
|
+
}
|
|
185
|
+
case 'kinetic': {
|
|
186
|
+
// Ubuntu 22.10 kinetic
|
|
187
|
+
this.distroLike = 'Ubuntu';
|
|
188
|
+
this.codenameLikeId = 'kinetic';
|
|
206
189
|
// quindi le derivate...
|
|
207
190
|
break;
|
|
208
191
|
}
|
|
@@ -392,6 +375,7 @@ class Distro {
|
|
|
392
375
|
this.syslinuxPath = '/usr/lib/syslinux/modules/bios/';
|
|
393
376
|
this.pxelinuxPath = '/usr/lib/PXELINUX/';
|
|
394
377
|
this.usrLibPath = '/usr/lib/x86_64-linux-gnu/';
|
|
378
|
+
this.memdiskPath = '/usr/lib/syslinux/';
|
|
395
379
|
if (process.arch === 'ia32') {
|
|
396
380
|
this.usrLibPath = '/usr/lib/i386-linux-gnu/';
|
|
397
381
|
}
|
|
@@ -404,6 +388,8 @@ class Distro {
|
|
|
404
388
|
}
|
|
405
389
|
case 'archlinux': {
|
|
406
390
|
this.syslinuxPath = '/usr/lib/syslinux/bios/';
|
|
391
|
+
this.pxelinuxPath = this.syslinuxPath;
|
|
392
|
+
this.memdiskPath = this.syslinuxPath;
|
|
407
393
|
this.isolinuxPath = this.syslinuxPath;
|
|
408
394
|
break;
|
|
409
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
|
|
@@ -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
|