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.
Files changed (330) hide show
  1. package/.oclif.manifest.json +1 -0
  2. package/README.md +34 -31
  3. package/conf/distros/kinetic/README.md +41 -0
  4. package/conf/tools.yaml +1 -1
  5. package/{lib → dist}/classes/bleach.js +0 -0
  6. package/{lib → dist}/classes/compressors.js +0 -0
  7. package/{lib → dist}/classes/daddy.js +0 -0
  8. package/{lib → dist}/classes/distro.js +14 -30
  9. package/{lib → dist}/classes/family/archlinux.js +0 -0
  10. package/{lib → dist}/classes/family/debian.js +0 -0
  11. package/{lib → dist}/classes/family/fedora.js +0 -0
  12. package/{lib → dist}/classes/family/suse.js +0 -0
  13. package/{lib → dist}/classes/incubation/branding.js +0 -0
  14. package/{lib → dist}/classes/incubation/distros/bionic.js +0 -0
  15. package/{lib → dist}/classes/incubation/distros/buster.js +0 -0
  16. package/{lib → dist}/classes/incubation/distros/focal.js +0 -0
  17. package/{lib → dist}/classes/incubation/distros/jessie.js +0 -0
  18. package/{lib → dist}/classes/incubation/distros/rolling.js +0 -0
  19. package/{lib → dist}/classes/incubation/fisherman-helper/displaymanager.js +0 -0
  20. package/{lib → dist}/classes/incubation/fisherman-helper/packages.js +0 -0
  21. package/{lib → dist}/classes/incubation/fisherman.js +0 -0
  22. package/{lib → dist}/classes/incubation/incubator.js +9 -19
  23. package/{lib → dist}/classes/incubation/installer.js +0 -0
  24. package/{lib → dist}/classes/initrd.js +0 -0
  25. package/{lib → dist}/classes/keyboards.js +0 -0
  26. package/{lib → dist}/classes/locales.js +0 -0
  27. package/{lib → dist}/classes/n8.js +0 -0
  28. package/dist/classes/network.js +99 -0
  29. package/{lib → dist}/classes/ovary.js +0 -0
  30. package/{lib → dist}/classes/pacman.js +16 -1
  31. package/{lib → dist}/classes/pve-live.js +0 -0
  32. package/dist/classes/pxe.js +337 -0
  33. package/{lib → dist}/classes/settings.js +0 -0
  34. package/{lib → dist}/classes/sources_list.js +0 -0
  35. package/{lib → dist}/classes/systemctl.js +0 -0
  36. package/{lib → dist}/classes/tailor.js +0 -0
  37. package/{lib → dist}/classes/tools.js +0 -0
  38. package/{lib → dist}/classes/users.js +0 -0
  39. package/{lib → dist}/classes/utils.js +82 -17
  40. package/{lib → dist}/classes/xdg.js +24 -26
  41. package/{lib → dist}/classes/yolk.js +0 -0
  42. package/{lib → dist}/commands/adapt.js +0 -0
  43. package/{lib → dist}/commands/analyze.js +0 -0
  44. package/{lib → dist}/commands/calamares.js +0 -0
  45. package/{lib → dist}/commands/config.js +0 -0
  46. package/dist/commands/cuckoo.js +63 -0
  47. package/{lib → dist}/commands/dad.js +0 -0
  48. package/{lib → dist}/commands/export/deb.js +0 -0
  49. package/{lib → dist}/commands/export/docs.js +0 -0
  50. package/{lib → dist}/commands/export/iso.js +0 -0
  51. package/{lib → dist}/commands/install.js +26 -5
  52. package/{lib → dist}/commands/kill.js +0 -0
  53. package/{lib → dist}/commands/mom.js +0 -0
  54. package/{lib → dist}/commands/produce.js +0 -0
  55. package/{lib → dist}/commands/status.js +0 -0
  56. package/{lib → dist}/commands/syncfrom.js +0 -0
  57. package/{lib → dist}/commands/syncto.js +0 -0
  58. package/{lib → dist}/commands/tools/clean.js +0 -0
  59. package/{lib → dist}/commands/tools/skel.js +0 -0
  60. package/{lib → dist}/commands/tools/stat.js +0 -0
  61. package/{lib → dist}/commands/tools/yolk.js +0 -0
  62. package/{lib → dist}/commands/update.js +0 -0
  63. package/{lib → dist}/commands/wardrobe/get.js +0 -0
  64. package/{lib → dist}/commands/wardrobe/ironing.js +0 -0
  65. package/{lib → dist}/commands/wardrobe/list.js +0 -0
  66. package/{lib → dist}/commands/wardrobe/show.js +0 -0
  67. package/{lib → dist}/commands/wardrobe/wear.js +0 -0
  68. package/{lib → dist}/components/elements/information.js +0 -0
  69. package/{lib → dist}/components/elements/steps.js +0 -0
  70. package/{lib → dist}/components/elements/title.js +0 -0
  71. package/{lib → dist}/components/finished.js +0 -0
  72. package/{lib → dist}/components/install.js +0 -0
  73. package/{lib → dist}/components/keyboard.js +0 -0
  74. package/{lib → dist}/components/location.js +0 -0
  75. package/{lib → dist}/components/network.js +0 -0
  76. package/{lib → dist}/components/partitions.js +0 -0
  77. package/{lib → dist}/components/summary.js +2 -2
  78. package/{lib → dist}/components/users.js +0 -0
  79. package/{lib → dist}/components/welcome.js +0 -0
  80. package/dist/dhcpd/dhcpd.js +222 -0
  81. package/dist/dhcpd/index.js +7 -0
  82. package/dist/dhcpd/packet/converters.js +377 -0
  83. package/dist/dhcpd/packet/options.js +2 -0
  84. package/dist/dhcpd/packet/types.js +2 -0
  85. package/dist/dhcpd/packet.js +251 -0
  86. package/dist/dhcpd/proxy.js +152 -0
  87. package/dist/dhcpd/server.js +152 -0
  88. package/dist/dhcpd/sprintf.js +170 -0
  89. package/dist/dhcpd/utils.js +190 -0
  90. package/{lib → dist}/index.js +0 -0
  91. package/{lib → dist}/interfaces/i-addons.js +0 -0
  92. package/{lib → dist}/interfaces/i-analyze.js +0 -0
  93. package/{lib → dist}/interfaces/i-app.js +0 -0
  94. package/{lib → dist}/interfaces/i-branding.js +0 -0
  95. package/{lib → dist}/interfaces/i-config-tools.js +0 -0
  96. package/{lib → dist}/interfaces/i-devices.js +0 -0
  97. package/{lib → dist}/interfaces/i-distro.js +0 -0
  98. package/{lib → dist}/interfaces/i-drive-list.js +0 -0
  99. package/{lib → dist}/interfaces/i-eggs-config.js +0 -0
  100. package/{lib → dist}/interfaces/i-exec.js +0 -0
  101. package/{lib → dist}/interfaces/i-initrd.js +0 -0
  102. package/{lib → dist}/interfaces/i-install.js +0 -0
  103. package/{lib → dist}/interfaces/i-installer.js +0 -0
  104. package/{lib → dist}/interfaces/i-krill-config.js +0 -0
  105. package/{lib → dist}/interfaces/i-krill.js +0 -0
  106. package/{lib → dist}/interfaces/i-materia.js +0 -0
  107. package/{lib → dist}/interfaces/i-net.js +0 -0
  108. package/{lib → dist}/interfaces/i-packages.js +0 -0
  109. package/{lib → dist}/interfaces/i-partitions.js +0 -0
  110. package/{lib/interfaces/i-remix.js → dist/interfaces/i-pxe-options.js} +0 -0
  111. package/{lib/interfaces/i-settings.js → dist/interfaces/i-remix.js} +0 -0
  112. package/{lib/interfaces/i-user.js → dist/interfaces/i-settings.js} +0 -0
  113. package/{lib/interfaces/i-workdir.js → dist/interfaces/i-user.js} +0 -0
  114. package/{lib/interfaces/i-xkb-model.js → dist/interfaces/i-workdir.js} +0 -0
  115. package/{lib/interfaces/index.js → dist/interfaces/i-xkb-model.js} +0 -0
  116. package/dist/interfaces/index.js +2 -0
  117. package/{lib → dist}/krill/krill-prepare.js +20 -4
  118. package/{lib → dist}/krill/krill-sequence.js +64 -62
  119. package/{lib → dist}/krill/modules/add-user.js +0 -0
  120. package/{lib → dist}/krill/modules/bootloader-config-ubuntu.js +0 -0
  121. package/{lib → dist}/krill/modules/bootloader-config.js +1 -1
  122. package/{lib → dist}/krill/modules/bootloader.js +0 -5
  123. package/{lib → dist}/krill/modules/change-password.js +0 -0
  124. package/{lib → dist}/krill/modules/del-live-user.js +0 -0
  125. package/{lib → dist}/krill/modules/fstab.js +0 -0
  126. package/{lib → dist}/krill/modules/grubcfg.js +0 -0
  127. package/{lib → dist}/krill/modules/hostname.js +2 -2
  128. package/{lib → dist}/krill/modules/initramfs-cfg.js +0 -0
  129. package/{lib → dist}/krill/modules/initramfs.js +0 -0
  130. package/{lib → dist}/krill/modules/locale-cfg.js +0 -0
  131. package/{lib → dist}/krill/modules/locale.js +1 -1
  132. package/{lib/krill/modules/set-keyboard.js → dist/krill/modules/m-keyboard.js} +7 -3
  133. package/{lib/krill/modules/set-timezone.js → dist/krill/modules/m-timezone.js} +2 -2
  134. package/{lib → dist}/krill/modules/machine-id.js +0 -0
  135. package/{lib → dist}/krill/modules/mkfs.js +0 -0
  136. package/{lib → dist}/krill/modules/mount-fs.js +0 -0
  137. package/{lib → dist}/krill/modules/mount-vfs.js +0 -0
  138. package/{lib → dist}/krill/modules/network-cfg.js +0 -0
  139. package/{lib → dist}/krill/modules/packages.js +0 -0
  140. package/{lib → dist}/krill/modules/partition.js +1 -1
  141. package/{lib → dist}/krill/modules/remove-installer-link.js +0 -0
  142. package/{lib → dist}/krill/modules/umount.js +0 -0
  143. package/{lib → dist}/krill/modules/unpackfs.js +0 -0
  144. package/{lib → dist}/lib/cli-autologin.js +0 -0
  145. package/{lib → dist}/lib/dependencies.js +0 -0
  146. package/{lib → dist}/lib/get_address.js +0 -0
  147. package/{lib → dist}/lib/get_dns.js +0 -0
  148. package/{lib → dist}/lib/get_domain.js +0 -0
  149. package/{lib → dist}/lib/get_gateway.js +0 -0
  150. package/{lib → dist}/lib/get_hostname.js +0 -0
  151. package/{lib → dist}/lib/get_netmask.js +0 -0
  152. package/{lib → dist}/lib/get_password.js +0 -0
  153. package/{lib → dist}/lib/get_root_password.js +0 -0
  154. package/{lib → dist}/lib/get_userfullname.js +0 -0
  155. package/{lib → dist}/lib/get_username.js +0 -0
  156. package/{lib → dist}/lib/select_address_type.js +0 -0
  157. package/{lib → dist}/lib/select_filesystem_type.js +0 -0
  158. package/{lib → dist}/lib/select_installation_device.js +0 -0
  159. package/{lib → dist}/lib/select_installation_mode.js +0 -0
  160. package/{lib → dist}/lib/select_interface.js +0 -0
  161. package/{lib → dist}/lib/select_keyboard_layout.js +0 -0
  162. package/{lib → dist}/lib/select_keyboard_model.js +0 -0
  163. package/{lib → dist}/lib/select_keyboard_option.js +0 -0
  164. package/{lib → dist}/lib/select_keyboard_variant.js +0 -0
  165. package/{lib → dist}/lib/select_languages.js +0 -0
  166. package/{lib → dist}/lib/select_regions.js +0 -0
  167. package/{lib → dist}/lib/select_user_swap_choice.js +0 -0
  168. package/{lib → dist}/lib/select_zones.js +0 -0
  169. package/{lib → dist}/lib/utils.js +1 -2
  170. package/ipxe/ipxe.efi +0 -0
  171. package/package.json +20 -17
  172. package/scripts/_eggs +11 -7
  173. package/scripts/eggs.bash +2 -2
  174. package/lib/classes/bleach.d.ts +0 -40
  175. package/lib/classes/compressors.d.ts +0 -24
  176. package/lib/classes/daddy.d.ts +0 -11
  177. package/lib/classes/distro.d.ts +0 -31
  178. package/lib/classes/family/archlinux.d.ts +0 -69
  179. package/lib/classes/family/debian.d.ts +0 -68
  180. package/lib/classes/family/fedora.d.ts +0 -63
  181. package/lib/classes/family/suse.d.ts +0 -63
  182. package/lib/classes/incubation/branding.d.ts +0 -8
  183. package/lib/classes/incubation/distros/bionic.d.ts +0 -29
  184. package/lib/classes/incubation/distros/buster.d.ts +0 -31
  185. package/lib/classes/incubation/distros/focal.d.ts +0 -29
  186. package/lib/classes/incubation/distros/jessie.d.ts +0 -32
  187. package/lib/classes/incubation/distros/rolling.d.ts +0 -31
  188. package/lib/classes/incubation/fisherman-helper/displaymanager.d.ts +0 -7
  189. package/lib/classes/incubation/fisherman-helper/packages.d.ts +0 -19
  190. package/lib/classes/incubation/fisherman.d.ts +0 -77
  191. package/lib/classes/incubation/incubator.d.ts +0 -35
  192. package/lib/classes/incubation/installer.d.ts +0 -15
  193. package/lib/classes/initrd.d.ts +0 -42
  194. package/lib/classes/keyboards.d.ts +0 -43
  195. package/lib/classes/locales.d.ts +0 -14
  196. package/lib/classes/n8.d.ts +0 -16
  197. package/lib/classes/ovary.d.ts +0 -179
  198. package/lib/classes/pacman.d.ts +0 -164
  199. package/lib/classes/pve-live.d.ts +0 -42
  200. package/lib/classes/pxe.d.ts +0 -64
  201. package/lib/classes/pxe.js +0 -376
  202. package/lib/classes/settings.d.ts +0 -55
  203. package/lib/classes/sources_list.d.ts +0 -27
  204. package/lib/classes/systemctl.d.ts +0 -46
  205. package/lib/classes/tailor.d.ts +0 -43
  206. package/lib/classes/tools.d.ts +0 -29
  207. package/lib/classes/users.d.ts +0 -21
  208. package/lib/classes/utils.d.ts +0 -299
  209. package/lib/classes/xdg.d.ts +0 -44
  210. package/lib/classes/yolk.d.ts +0 -26
  211. package/lib/commands/adapt.d.ts +0 -9
  212. package/lib/commands/analyze.d.ts +0 -25
  213. package/lib/commands/calamares.d.ts +0 -26
  214. package/lib/commands/config.d.ts +0 -34
  215. package/lib/commands/cuckoo.d.ts +0 -24
  216. package/lib/commands/cuckoo.js +0 -70
  217. package/lib/commands/dad.d.ts +0 -17
  218. package/lib/commands/export/deb.d.ts +0 -14
  219. package/lib/commands/export/docs.d.ts +0 -8
  220. package/lib/commands/export/iso.d.ts +0 -13
  221. package/lib/commands/install.d.ts +0 -26
  222. package/lib/commands/kill.d.ts +0 -20
  223. package/lib/commands/mom.d.ts +0 -14
  224. package/lib/commands/produce.d.ts +0 -28
  225. package/lib/commands/status.d.ts +0 -18
  226. package/lib/commands/syncfrom.d.ts +0 -42
  227. package/lib/commands/syncto.d.ts +0 -67
  228. package/lib/commands/tools/clean.d.ts +0 -15
  229. package/lib/commands/tools/skel.d.ts +0 -17
  230. package/lib/commands/tools/stat.d.ts +0 -14
  231. package/lib/commands/tools/yolk.d.ts +0 -23
  232. package/lib/commands/update.d.ts +0 -46
  233. package/lib/commands/wardrobe/get.d.ts +0 -17
  234. package/lib/commands/wardrobe/ironing.d.ts +0 -18
  235. package/lib/commands/wardrobe/list.d.ts +0 -17
  236. package/lib/commands/wardrobe/show.d.ts +0 -19
  237. package/lib/commands/wardrobe/wear.d.ts +0 -21
  238. package/lib/components/elements/information.d.ts +0 -4
  239. package/lib/components/elements/steps.d.ts +0 -6
  240. package/lib/components/elements/title.d.ts +0 -4
  241. package/lib/components/finished.d.ts +0 -8
  242. package/lib/components/install.d.ts +0 -8
  243. package/lib/components/keyboard.d.ts +0 -12
  244. package/lib/components/location.d.ts +0 -12
  245. package/lib/components/network.d.ts +0 -12
  246. package/lib/components/partitions.d.ts +0 -9
  247. package/lib/components/summary.d.ts +0 -16
  248. package/lib/components/users.d.ts +0 -20
  249. package/lib/components/welcome.d.ts +0 -6
  250. package/lib/index.d.ts +0 -1
  251. package/lib/interfaces/i-addons.d.ts +0 -8
  252. package/lib/interfaces/i-analyze.d.ts +0 -13
  253. package/lib/interfaces/i-app.d.ts +0 -7
  254. package/lib/interfaces/i-branding.d.ts +0 -29
  255. package/lib/interfaces/i-config-tools.d.ts +0 -11
  256. package/lib/interfaces/i-devices.d.ts +0 -13
  257. package/lib/interfaces/i-distro.d.ts +0 -19
  258. package/lib/interfaces/i-drive-list.d.ts +0 -29
  259. package/lib/interfaces/i-eggs-config.d.ts +0 -24
  260. package/lib/interfaces/i-exec.d.ts +0 -4
  261. package/lib/interfaces/i-initrd.d.ts +0 -6
  262. package/lib/interfaces/i-install.d.ts +0 -9
  263. package/lib/interfaces/i-installer.d.ts +0 -20
  264. package/lib/interfaces/i-krill-config.d.ts +0 -26
  265. package/lib/interfaces/i-krill.d.ts +0 -35
  266. package/lib/interfaces/i-materia.d.ts +0 -36
  267. package/lib/interfaces/i-net.d.ts +0 -9
  268. package/lib/interfaces/i-packages.d.ts +0 -10
  269. package/lib/interfaces/i-partitions.d.ts +0 -9
  270. package/lib/interfaces/i-remix.d.ts +0 -14
  271. package/lib/interfaces/i-settings.d.ts +0 -10
  272. package/lib/interfaces/i-user.d.ts +0 -7
  273. package/lib/interfaces/i-workdir.d.ts +0 -8
  274. package/lib/interfaces/i-xkb-model.d.ts +0 -17
  275. package/lib/interfaces/index.d.ts +0 -17
  276. package/lib/krill/krill-prepare.d.ts +0 -60
  277. package/lib/krill/krill-sequence.d.ts +0 -150
  278. package/lib/krill/modules/add-user.d.ts +0 -15
  279. package/lib/krill/modules/bootloader-config-arch.d.ts +0 -9
  280. package/lib/krill/modules/bootloader-config-arch.js +0 -13
  281. package/lib/krill/modules/bootloader-config-ubuntu.d.ts +0 -9
  282. package/lib/krill/modules/bootloader-config.d.ts +0 -9
  283. package/lib/krill/modules/bootloader.d.ts +0 -10
  284. package/lib/krill/modules/change-password.d.ts +0 -10
  285. package/lib/krill/modules/del-live-user.d.ts +0 -9
  286. package/lib/krill/modules/fstab.d.ts +0 -14
  287. package/lib/krill/modules/grubcfg.d.ts +0 -17
  288. package/lib/krill/modules/hostname.d.ts +0 -13
  289. package/lib/krill/modules/initramfs-cfg.d.ts +0 -14
  290. package/lib/krill/modules/initramfs.d.ts +0 -13
  291. package/lib/krill/modules/locale-cfg.d.ts +0 -10
  292. package/lib/krill/modules/locale.d.ts +0 -13
  293. package/lib/krill/modules/machine-id.d.ts +0 -15
  294. package/lib/krill/modules/mkfs.d.ts +0 -13
  295. package/lib/krill/modules/mount-fs.d.ts +0 -17
  296. package/lib/krill/modules/mount-vfs.d.ts +0 -17
  297. package/lib/krill/modules/network-cfg.d.ts +0 -19
  298. package/lib/krill/modules/packages.d.ts +0 -14
  299. package/lib/krill/modules/partition.d.ts +0 -20
  300. package/lib/krill/modules/remove-installer-link.d.ts +0 -13
  301. package/lib/krill/modules/set-keyboard.d.ts +0 -10
  302. package/lib/krill/modules/set-timezone.d.ts +0 -14
  303. package/lib/krill/modules/umount.d.ts +0 -14
  304. package/lib/krill/modules/unpackfs.d.ts +0 -13
  305. package/lib/lib/cli-autologin.d.ts +0 -27
  306. package/lib/lib/dependencies.d.ts +0 -49
  307. package/lib/lib/get_address.d.ts +0 -1
  308. package/lib/lib/get_dns.d.ts +0 -1
  309. package/lib/lib/get_domain.d.ts +0 -1
  310. package/lib/lib/get_gateway.d.ts +0 -1
  311. package/lib/lib/get_hostname.d.ts +0 -1
  312. package/lib/lib/get_netmask.d.ts +0 -1
  313. package/lib/lib/get_password.d.ts +0 -1
  314. package/lib/lib/get_root_password.d.ts +0 -1
  315. package/lib/lib/get_userfullname.d.ts +0 -1
  316. package/lib/lib/get_username.d.ts +0 -1
  317. package/lib/lib/select_address_type.d.ts +0 -1
  318. package/lib/lib/select_filesystem_type.d.ts +0 -1
  319. package/lib/lib/select_installation_device.d.ts +0 -1
  320. package/lib/lib/select_installation_mode.d.ts +0 -1
  321. package/lib/lib/select_interface.d.ts +0 -1
  322. package/lib/lib/select_keyboard_layout.d.ts +0 -4
  323. package/lib/lib/select_keyboard_model.d.ts +0 -4
  324. package/lib/lib/select_keyboard_option.d.ts +0 -4
  325. package/lib/lib/select_keyboard_variant.d.ts +0 -4
  326. package/lib/lib/select_languages.d.ts +0 -1
  327. package/lib/lib/select_regions.d.ts +0 -1
  328. package/lib/lib/select_user_swap_choice.d.ts +0 -1
  329. package/lib/lib/select_zones.d.ts +0 -1
  330. 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: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/adapt.ts)_
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: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/analyze.ts)_
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.0/src/commands/autocomplete/index.ts)_
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: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/calamares.ts)_
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: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/config.ts)_
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
- cuckoo start a PXE boot server serving the live image
307
+ PXE start with proxy-dhcp
308
308
 
309
309
  ```
310
310
  USAGE
311
- $ eggs cuckoo [-r] [-h] [-v]
311
+ $ eggs cuckoo [-h]
312
312
 
313
313
  FLAGS
314
- -h, --help Show CLI 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
- cuckoo start a PXE boot server serving the live image
317
+ PXE start with proxy-dhcp
320
318
 
321
319
  EXAMPLES
322
320
  $ sudo eggs cuckoo
323
- start a PXE boot server
321
+ start a PXE server with dhcp-proxy (can coexists with a real dhcp server)
324
322
  ```
325
323
 
326
- _See code: [src/commands/cuckoo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/cuckoo.ts)_
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: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/dad.ts)_
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.12/src/commands/help.ts)_
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
- -h, --help Show CLI help.
431
- -i, --ip add ip to hostname
432
- -k, --crypted crypted CLI installation
433
- -p, --pve Proxmox VE install
434
- -u, --unattended unattended CLI installation
435
- -v, --verbose verbose
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: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/install.ts)_
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: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/kill.ts)_
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: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/mom.ts)_
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: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/produce.ts)_
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: [src/commands/status.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/status.ts)_
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: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/syncfrom.ts)_
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: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/syncto.ts)_
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: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/update.ts)_
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.1/src/commands/version.ts)_
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
@@ -7,7 +7,7 @@ penguins_eggs_conf: /etc/penguins-eggs.d/eggs.yaml
7
7
  remoteHost: 192.168.1.2
8
8
 
9
9
  # user to be used in remote host
10
- remoteUser: artisan
10
+ remoteUser: root
11
11
 
12
12
  # path in remote host
13
13
  remotePathDeb: /home/artisan/sourceforge/packages-deb/
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
- case 'xenial': {
168
- // Ubuntu xenial
169
- this.distroLike = 'Ubuntu';
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
@@ -76,7 +76,7 @@ class Incubator {
76
76
  break;
77
77
  }
78
78
  /**
79
- * DEVUAL
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 'bionic': {
125
- const bionic = new bionic_1.Bionic(this.installer, this.remix, this.distro, this.user_opt, release, this.verbose);
126
- await bionic.create();
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
- * Torna verso se calamares è installato
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
  **********************************************************************************/