penguins-eggs 9.2.6 → 9.3.1

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 (331) hide show
  1. package/.oclif.manifest.json +1 -0
  2. package/README.md +53 -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 +27 -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/dist/commands/tools/ppa.js +82 -0
  60. package/{lib → dist}/commands/tools/skel.js +0 -0
  61. package/{lib → dist}/commands/tools/stat.js +0 -0
  62. package/{lib → dist}/commands/tools/yolk.js +0 -0
  63. package/{lib → dist}/commands/update.js +0 -0
  64. package/{lib → dist}/commands/wardrobe/get.js +0 -0
  65. package/{lib → dist}/commands/wardrobe/ironing.js +0 -0
  66. package/{lib → dist}/commands/wardrobe/list.js +0 -0
  67. package/{lib → dist}/commands/wardrobe/show.js +0 -0
  68. package/{lib → dist}/commands/wardrobe/wear.js +0 -0
  69. package/{lib → dist}/components/elements/information.js +0 -0
  70. package/{lib → dist}/components/elements/steps.js +0 -0
  71. package/{lib → dist}/components/elements/title.js +0 -0
  72. package/{lib → dist}/components/finished.js +0 -0
  73. package/{lib → dist}/components/install.js +0 -0
  74. package/{lib → dist}/components/keyboard.js +0 -0
  75. package/{lib → dist}/components/location.js +0 -0
  76. package/{lib → dist}/components/network.js +0 -0
  77. package/{lib → dist}/components/partitions.js +0 -0
  78. package/{lib → dist}/components/summary.js +2 -2
  79. package/{lib → dist}/components/users.js +0 -0
  80. package/{lib → dist}/components/welcome.js +0 -0
  81. package/dist/dhcpd/dhcpd.js +222 -0
  82. package/dist/dhcpd/index.js +7 -0
  83. package/dist/dhcpd/packet/converters.js +377 -0
  84. package/dist/dhcpd/packet/options.js +2 -0
  85. package/dist/dhcpd/packet/types.js +2 -0
  86. package/dist/dhcpd/packet.js +251 -0
  87. package/dist/dhcpd/proxy.js +152 -0
  88. package/dist/dhcpd/server.js +152 -0
  89. package/dist/dhcpd/sprintf.js +170 -0
  90. package/dist/dhcpd/utils.js +190 -0
  91. package/{lib → dist}/index.js +0 -0
  92. package/{lib → dist}/interfaces/i-addons.js +0 -0
  93. package/{lib → dist}/interfaces/i-analyze.js +0 -0
  94. package/{lib → dist}/interfaces/i-app.js +0 -0
  95. package/{lib → dist}/interfaces/i-branding.js +0 -0
  96. package/{lib → dist}/interfaces/i-config-tools.js +0 -0
  97. package/{lib → dist}/interfaces/i-devices.js +0 -0
  98. package/{lib → dist}/interfaces/i-distro.js +0 -0
  99. package/{lib → dist}/interfaces/i-drive-list.js +0 -0
  100. package/{lib → dist}/interfaces/i-eggs-config.js +0 -0
  101. package/{lib → dist}/interfaces/i-exec.js +0 -0
  102. package/{lib → dist}/interfaces/i-initrd.js +0 -0
  103. package/{lib → dist}/interfaces/i-install.js +0 -0
  104. package/{lib → dist}/interfaces/i-installer.js +0 -0
  105. package/{lib → dist}/interfaces/i-krill-config.js +0 -0
  106. package/{lib → dist}/interfaces/i-krill.js +0 -0
  107. package/{lib → dist}/interfaces/i-materia.js +0 -0
  108. package/{lib → dist}/interfaces/i-net.js +0 -0
  109. package/{lib → dist}/interfaces/i-packages.js +0 -0
  110. package/{lib → dist}/interfaces/i-partitions.js +0 -0
  111. package/{lib/interfaces/i-remix.js → dist/interfaces/i-pxe-options.js} +0 -0
  112. package/{lib/interfaces/i-settings.js → dist/interfaces/i-remix.js} +0 -0
  113. package/{lib/interfaces/i-user.js → dist/interfaces/i-settings.js} +0 -0
  114. package/{lib/interfaces/i-workdir.js → dist/interfaces/i-user.js} +0 -0
  115. package/{lib/interfaces/i-xkb-model.js → dist/interfaces/i-workdir.js} +0 -0
  116. package/{lib/interfaces/index.js → dist/interfaces/i-xkb-model.js} +0 -0
  117. package/dist/interfaces/index.js +2 -0
  118. package/{lib → dist}/krill/krill-prepare.js +20 -4
  119. package/{lib → dist}/krill/krill-sequence.js +64 -62
  120. package/{lib → dist}/krill/modules/add-user.js +0 -0
  121. package/{lib → dist}/krill/modules/bootloader-config-ubuntu.js +0 -0
  122. package/{lib → dist}/krill/modules/bootloader-config.js +1 -1
  123. package/{lib → dist}/krill/modules/bootloader.js +0 -5
  124. package/{lib → dist}/krill/modules/change-password.js +0 -0
  125. package/{lib → dist}/krill/modules/del-live-user.js +0 -0
  126. package/{lib → dist}/krill/modules/fstab.js +0 -0
  127. package/{lib → dist}/krill/modules/grubcfg.js +0 -0
  128. package/{lib → dist}/krill/modules/hostname.js +2 -2
  129. package/{lib → dist}/krill/modules/initramfs-cfg.js +0 -0
  130. package/{lib → dist}/krill/modules/initramfs.js +0 -0
  131. package/{lib → dist}/krill/modules/locale-cfg.js +0 -0
  132. package/{lib → dist}/krill/modules/locale.js +1 -1
  133. package/{lib/krill/modules/set-keyboard.js → dist/krill/modules/m-keyboard.js} +7 -3
  134. package/{lib/krill/modules/set-timezone.js → dist/krill/modules/m-timezone.js} +2 -2
  135. package/{lib → dist}/krill/modules/machine-id.js +0 -0
  136. package/{lib → dist}/krill/modules/mkfs.js +0 -0
  137. package/{lib → dist}/krill/modules/mount-fs.js +0 -0
  138. package/{lib → dist}/krill/modules/mount-vfs.js +0 -0
  139. package/{lib → dist}/krill/modules/network-cfg.js +0 -0
  140. package/{lib → dist}/krill/modules/packages.js +0 -0
  141. package/{lib → dist}/krill/modules/partition.js +1 -1
  142. package/{lib → dist}/krill/modules/remove-installer-link.js +0 -0
  143. package/{lib → dist}/krill/modules/umount.js +0 -0
  144. package/{lib → dist}/krill/modules/unpackfs.js +0 -0
  145. package/{lib → dist}/lib/cli-autologin.js +0 -0
  146. package/{lib → dist}/lib/dependencies.js +1 -0
  147. package/{lib → dist}/lib/get_address.js +0 -0
  148. package/{lib → dist}/lib/get_dns.js +0 -0
  149. package/{lib → dist}/lib/get_domain.js +0 -0
  150. package/{lib → dist}/lib/get_gateway.js +0 -0
  151. package/{lib → dist}/lib/get_hostname.js +0 -0
  152. package/{lib → dist}/lib/get_netmask.js +0 -0
  153. package/{lib → dist}/lib/get_password.js +0 -0
  154. package/{lib → dist}/lib/get_root_password.js +0 -0
  155. package/{lib → dist}/lib/get_userfullname.js +0 -0
  156. package/{lib → dist}/lib/get_username.js +0 -0
  157. package/{lib → dist}/lib/select_address_type.js +0 -0
  158. package/{lib → dist}/lib/select_filesystem_type.js +0 -0
  159. package/{lib → dist}/lib/select_installation_device.js +0 -0
  160. package/{lib → dist}/lib/select_installation_mode.js +0 -0
  161. package/{lib → dist}/lib/select_interface.js +0 -0
  162. package/{lib → dist}/lib/select_keyboard_layout.js +0 -0
  163. package/{lib → dist}/lib/select_keyboard_model.js +0 -0
  164. package/{lib → dist}/lib/select_keyboard_option.js +0 -0
  165. package/{lib → dist}/lib/select_keyboard_variant.js +0 -0
  166. package/{lib → dist}/lib/select_languages.js +0 -0
  167. package/{lib → dist}/lib/select_regions.js +0 -0
  168. package/{lib → dist}/lib/select_user_swap_choice.js +0 -0
  169. package/{lib → dist}/lib/select_zones.js +0 -0
  170. package/{lib → dist}/lib/utils.js +1 -2
  171. package/ipxe/ipxe.efi +0 -0
  172. package/package.json +21 -18
  173. package/scripts/_eggs +11 -7
  174. package/scripts/eggs.bash +2 -2
  175. package/lib/classes/bleach.d.ts +0 -40
  176. package/lib/classes/compressors.d.ts +0 -24
  177. package/lib/classes/daddy.d.ts +0 -11
  178. package/lib/classes/distro.d.ts +0 -31
  179. package/lib/classes/family/archlinux.d.ts +0 -69
  180. package/lib/classes/family/debian.d.ts +0 -68
  181. package/lib/classes/family/fedora.d.ts +0 -63
  182. package/lib/classes/family/suse.d.ts +0 -63
  183. package/lib/classes/incubation/branding.d.ts +0 -8
  184. package/lib/classes/incubation/distros/bionic.d.ts +0 -29
  185. package/lib/classes/incubation/distros/buster.d.ts +0 -31
  186. package/lib/classes/incubation/distros/focal.d.ts +0 -29
  187. package/lib/classes/incubation/distros/jessie.d.ts +0 -32
  188. package/lib/classes/incubation/distros/rolling.d.ts +0 -31
  189. package/lib/classes/incubation/fisherman-helper/displaymanager.d.ts +0 -7
  190. package/lib/classes/incubation/fisherman-helper/packages.d.ts +0 -19
  191. package/lib/classes/incubation/fisherman.d.ts +0 -77
  192. package/lib/classes/incubation/incubator.d.ts +0 -35
  193. package/lib/classes/incubation/installer.d.ts +0 -15
  194. package/lib/classes/initrd.d.ts +0 -42
  195. package/lib/classes/keyboards.d.ts +0 -43
  196. package/lib/classes/locales.d.ts +0 -14
  197. package/lib/classes/n8.d.ts +0 -16
  198. package/lib/classes/ovary.d.ts +0 -179
  199. package/lib/classes/pacman.d.ts +0 -164
  200. package/lib/classes/pve-live.d.ts +0 -42
  201. package/lib/classes/pxe.d.ts +0 -64
  202. package/lib/classes/pxe.js +0 -376
  203. package/lib/classes/settings.d.ts +0 -55
  204. package/lib/classes/sources_list.d.ts +0 -27
  205. package/lib/classes/systemctl.d.ts +0 -46
  206. package/lib/classes/tailor.d.ts +0 -43
  207. package/lib/classes/tools.d.ts +0 -29
  208. package/lib/classes/users.d.ts +0 -21
  209. package/lib/classes/utils.d.ts +0 -299
  210. package/lib/classes/xdg.d.ts +0 -44
  211. package/lib/classes/yolk.d.ts +0 -26
  212. package/lib/commands/adapt.d.ts +0 -9
  213. package/lib/commands/analyze.d.ts +0 -25
  214. package/lib/commands/calamares.d.ts +0 -26
  215. package/lib/commands/config.d.ts +0 -34
  216. package/lib/commands/cuckoo.d.ts +0 -24
  217. package/lib/commands/cuckoo.js +0 -70
  218. package/lib/commands/dad.d.ts +0 -17
  219. package/lib/commands/export/deb.d.ts +0 -14
  220. package/lib/commands/export/docs.d.ts +0 -8
  221. package/lib/commands/export/iso.d.ts +0 -13
  222. package/lib/commands/install.d.ts +0 -26
  223. package/lib/commands/kill.d.ts +0 -20
  224. package/lib/commands/mom.d.ts +0 -14
  225. package/lib/commands/produce.d.ts +0 -28
  226. package/lib/commands/status.d.ts +0 -18
  227. package/lib/commands/syncfrom.d.ts +0 -42
  228. package/lib/commands/syncto.d.ts +0 -67
  229. package/lib/commands/tools/clean.d.ts +0 -15
  230. package/lib/commands/tools/skel.d.ts +0 -17
  231. package/lib/commands/tools/stat.d.ts +0 -14
  232. package/lib/commands/tools/yolk.d.ts +0 -23
  233. package/lib/commands/update.d.ts +0 -46
  234. package/lib/commands/wardrobe/get.d.ts +0 -17
  235. package/lib/commands/wardrobe/ironing.d.ts +0 -18
  236. package/lib/commands/wardrobe/list.d.ts +0 -17
  237. package/lib/commands/wardrobe/show.d.ts +0 -19
  238. package/lib/commands/wardrobe/wear.d.ts +0 -21
  239. package/lib/components/elements/information.d.ts +0 -4
  240. package/lib/components/elements/steps.d.ts +0 -6
  241. package/lib/components/elements/title.d.ts +0 -4
  242. package/lib/components/finished.d.ts +0 -8
  243. package/lib/components/install.d.ts +0 -8
  244. package/lib/components/keyboard.d.ts +0 -12
  245. package/lib/components/location.d.ts +0 -12
  246. package/lib/components/network.d.ts +0 -12
  247. package/lib/components/partitions.d.ts +0 -9
  248. package/lib/components/summary.d.ts +0 -16
  249. package/lib/components/users.d.ts +0 -20
  250. package/lib/components/welcome.d.ts +0 -6
  251. package/lib/index.d.ts +0 -1
  252. package/lib/interfaces/i-addons.d.ts +0 -8
  253. package/lib/interfaces/i-analyze.d.ts +0 -13
  254. package/lib/interfaces/i-app.d.ts +0 -7
  255. package/lib/interfaces/i-branding.d.ts +0 -29
  256. package/lib/interfaces/i-config-tools.d.ts +0 -11
  257. package/lib/interfaces/i-devices.d.ts +0 -13
  258. package/lib/interfaces/i-distro.d.ts +0 -19
  259. package/lib/interfaces/i-drive-list.d.ts +0 -29
  260. package/lib/interfaces/i-eggs-config.d.ts +0 -24
  261. package/lib/interfaces/i-exec.d.ts +0 -4
  262. package/lib/interfaces/i-initrd.d.ts +0 -6
  263. package/lib/interfaces/i-install.d.ts +0 -9
  264. package/lib/interfaces/i-installer.d.ts +0 -20
  265. package/lib/interfaces/i-krill-config.d.ts +0 -26
  266. package/lib/interfaces/i-krill.d.ts +0 -35
  267. package/lib/interfaces/i-materia.d.ts +0 -36
  268. package/lib/interfaces/i-net.d.ts +0 -9
  269. package/lib/interfaces/i-packages.d.ts +0 -10
  270. package/lib/interfaces/i-partitions.d.ts +0 -9
  271. package/lib/interfaces/i-remix.d.ts +0 -14
  272. package/lib/interfaces/i-settings.d.ts +0 -10
  273. package/lib/interfaces/i-user.d.ts +0 -7
  274. package/lib/interfaces/i-workdir.d.ts +0 -8
  275. package/lib/interfaces/i-xkb-model.d.ts +0 -17
  276. package/lib/interfaces/index.d.ts +0 -17
  277. package/lib/krill/krill-prepare.d.ts +0 -60
  278. package/lib/krill/krill-sequence.d.ts +0 -150
  279. package/lib/krill/modules/add-user.d.ts +0 -15
  280. package/lib/krill/modules/bootloader-config-arch.d.ts +0 -9
  281. package/lib/krill/modules/bootloader-config-arch.js +0 -13
  282. package/lib/krill/modules/bootloader-config-ubuntu.d.ts +0 -9
  283. package/lib/krill/modules/bootloader-config.d.ts +0 -9
  284. package/lib/krill/modules/bootloader.d.ts +0 -10
  285. package/lib/krill/modules/change-password.d.ts +0 -10
  286. package/lib/krill/modules/del-live-user.d.ts +0 -9
  287. package/lib/krill/modules/fstab.d.ts +0 -14
  288. package/lib/krill/modules/grubcfg.d.ts +0 -17
  289. package/lib/krill/modules/hostname.d.ts +0 -13
  290. package/lib/krill/modules/initramfs-cfg.d.ts +0 -14
  291. package/lib/krill/modules/initramfs.d.ts +0 -13
  292. package/lib/krill/modules/locale-cfg.d.ts +0 -10
  293. package/lib/krill/modules/locale.d.ts +0 -13
  294. package/lib/krill/modules/machine-id.d.ts +0 -15
  295. package/lib/krill/modules/mkfs.d.ts +0 -13
  296. package/lib/krill/modules/mount-fs.d.ts +0 -17
  297. package/lib/krill/modules/mount-vfs.d.ts +0 -17
  298. package/lib/krill/modules/network-cfg.d.ts +0 -19
  299. package/lib/krill/modules/packages.d.ts +0 -14
  300. package/lib/krill/modules/partition.d.ts +0 -20
  301. package/lib/krill/modules/remove-installer-link.d.ts +0 -13
  302. package/lib/krill/modules/set-keyboard.d.ts +0 -10
  303. package/lib/krill/modules/set-timezone.d.ts +0 -14
  304. package/lib/krill/modules/umount.d.ts +0 -14
  305. package/lib/krill/modules/unpackfs.d.ts +0 -13
  306. package/lib/lib/cli-autologin.d.ts +0 -27
  307. package/lib/lib/dependencies.d.ts +0 -49
  308. package/lib/lib/get_address.d.ts +0 -1
  309. package/lib/lib/get_dns.d.ts +0 -1
  310. package/lib/lib/get_domain.d.ts +0 -1
  311. package/lib/lib/get_gateway.d.ts +0 -1
  312. package/lib/lib/get_hostname.d.ts +0 -1
  313. package/lib/lib/get_netmask.d.ts +0 -1
  314. package/lib/lib/get_password.d.ts +0 -1
  315. package/lib/lib/get_root_password.d.ts +0 -1
  316. package/lib/lib/get_userfullname.d.ts +0 -1
  317. package/lib/lib/get_username.d.ts +0 -1
  318. package/lib/lib/select_address_type.d.ts +0 -1
  319. package/lib/lib/select_filesystem_type.d.ts +0 -1
  320. package/lib/lib/select_installation_device.d.ts +0 -1
  321. package/lib/lib/select_installation_mode.d.ts +0 -1
  322. package/lib/lib/select_interface.d.ts +0 -1
  323. package/lib/lib/select_keyboard_layout.d.ts +0 -4
  324. package/lib/lib/select_keyboard_model.d.ts +0 -4
  325. package/lib/lib/select_keyboard_option.d.ts +0 -4
  326. package/lib/lib/select_keyboard_variant.d.ts +0 -4
  327. package/lib/lib/select_languages.d.ts +0 -1
  328. package/lib/lib/select_regions.d.ts +0 -1
  329. package/lib/lib/select_user_swap_choice.d.ts +0 -1
  330. package/lib/lib/select_zones.d.ts +0 -1
  331. package/lib/lib/utils.d.ts +0 -43
@@ -0,0 +1 @@
1
+ {"version":"9.3.1","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:ppa":{"id":"tools:ppa","description":"add/remove PPA repositories (Debian family)","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},"add":{"name":"add","type":"boolean","char":"a","description":"add penguins-eggs PPA repository","allowNo":false},"remove":{"name":"remove","type":"boolean","char":"r","description":"remove penguins-eggs PPA repository","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
@@ -170,6 +170,7 @@ In addition to the description of the commands in this README, you can consult t
170
170
  * [`eggs syncfrom`](#eggs-syncfrom)
171
171
  * [`eggs syncto`](#eggs-syncto)
172
172
  * [`eggs tools clean`](#eggs-tools-clean)
173
+ * [`eggs tools ppa`](#eggs-tools-ppa)
173
174
  * [`eggs tools skel`](#eggs-tools-skel)
174
175
  * [`eggs tools stat`](#eggs-tools-stat)
175
176
  * [`eggs tools yolk`](#eggs-tools-yolk)
@@ -197,7 +198,7 @@ DESCRIPTION
197
198
  adapt monitor resolution for VM only
198
199
  ```
199
200
 
200
- _See code: [src/commands/adapt.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/adapt.ts)_
201
+ _See code: [dist/commands/adapt.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.3.1/dist/commands/adapt.js)_
201
202
 
202
203
  ## `eggs analyze`
203
204
 
@@ -218,7 +219,7 @@ EXAMPLES
218
219
  $ sudo eggs analyze
219
220
  ```
220
221
 
221
- _See code: [src/commands/analyze.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/analyze.ts)_
222
+ _See code: [dist/commands/analyze.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.3.1/dist/commands/analyze.js)_
222
223
 
223
224
  ## `eggs autocomplete [SHELL]`
224
225
 
@@ -247,7 +248,7 @@ EXAMPLES
247
248
  $ eggs autocomplete --refresh-cache
248
249
  ```
249
250
 
250
- _See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v1.3.0/src/commands/autocomplete/index.ts)_
251
+ _See code: [@oclif/plugin-autocomplete](https://github.com/oclif/plugin-autocomplete/blob/v1.3.2/src/commands/autocomplete/index.ts)_
251
252
 
252
253
  ## `eggs calamares`
253
254
 
@@ -276,7 +277,7 @@ EXAMPLES
276
277
  install calamares and create it's configuration's files
277
278
  ```
278
279
 
279
- _See code: [src/commands/calamares.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/calamares.ts)_
280
+ _See code: [dist/commands/calamares.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.3.1/dist/commands/calamares.js)_
280
281
 
281
282
  ## `eggs config`
282
283
 
@@ -300,30 +301,28 @@ EXAMPLES
300
301
  Configure and install prerequisites deb packages to run it
301
302
  ```
302
303
 
303
- _See code: [src/commands/config.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/config.ts)_
304
+ _See code: [dist/commands/config.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.3.1/dist/commands/config.js)_
304
305
 
305
306
  ## `eggs cuckoo`
306
307
 
307
- cuckoo start a PXE boot server serving the live image
308
+ PXE start with proxy-dhcp
308
309
 
309
310
  ```
310
311
  USAGE
311
- $ eggs cuckoo [-r] [-h] [-v]
312
+ $ eggs cuckoo [-h]
312
313
 
313
314
  FLAGS
314
- -h, --help Show CLI help.
315
- -r, --real start a real dhcp server
316
- -v, --verbose verbose
315
+ -h, --help Show CLI help.
317
316
 
318
317
  DESCRIPTION
319
- cuckoo start a PXE boot server serving the live image
318
+ PXE start with proxy-dhcp
320
319
 
321
320
  EXAMPLES
322
321
  $ sudo eggs cuckoo
323
- start a PXE boot server
322
+ start a PXE server with dhcp-proxy (can coexists with a real dhcp server)
324
323
  ```
325
324
 
326
- _See code: [src/commands/cuckoo.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/cuckoo.ts)_
325
+ _See code: [dist/commands/cuckoo.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.3.1/dist/commands/cuckoo.js)_
327
326
 
328
327
  ## `eggs dad`
329
328
 
@@ -343,7 +342,7 @@ DESCRIPTION
343
342
  ask help from daddy - configuration helper
344
343
  ```
345
344
 
346
- _See code: [src/commands/dad.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/dad.ts)_
345
+ _See code: [dist/commands/dad.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.3.1/dist/commands/dad.js)_
347
346
 
348
347
  ## `eggs export deb`
349
348
 
@@ -416,7 +415,7 @@ DESCRIPTION
416
415
  Display help for eggs.
417
416
  ```
418
417
 
419
- _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.12/src/commands/help.ts)_
418
+ _See code: [@oclif/plugin-help](https://github.com/oclif/plugin-help/blob/v5.1.15/src/commands/help.ts)_
420
419
 
421
420
  ## `eggs install`
422
421
 
@@ -424,15 +423,20 @@ command-line system installer - the egg became a penguin!
424
423
 
425
424
  ```
426
425
  USAGE
427
- $ eggs install [-u] [-i] [-k] [-p] [-h] [-v]
426
+ $ eggs install [-u] [-i] [-r] [-d <value>] [-S] [-s] [-n] [-k] [-p] [-h] [-v]
428
427
 
429
428
  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
429
+ -S, --suspend Swap suspend: RAM x 2
430
+ -d, --domain=<value> Domain name, defult: .local
431
+ -h, --help Show CLI help.
432
+ -i, --ip hostname as ip, eg: ip-192-168-1-33
433
+ -k, --crypted Crypted CLI installation
434
+ -n, --none Swap none: 256M
435
+ -p, --pve Proxmox VE install
436
+ -r, --random Add random to hostname, eg: colibri-ay412dt
437
+ -s, --small Swap small: RAM
438
+ -u, --unattended Unattended installation
439
+ -v, --verbose Verbose
436
440
 
437
441
  DESCRIPTION
438
442
  command-line system installer - the egg became a penguin!
@@ -442,7 +446,7 @@ EXAMPLES
442
446
  Install the system using krill installer
443
447
  ```
444
448
 
445
- _See code: [src/commands/install.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/install.ts)_
449
+ _See code: [dist/commands/install.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.3.1/dist/commands/install.js)_
446
450
 
447
451
  ## `eggs kill`
448
452
 
@@ -464,7 +468,7 @@ EXAMPLES
464
468
  kill the eggs/free the nest
465
469
  ```
466
470
 
467
- _See code: [src/commands/kill.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/kill.ts)_
471
+ _See code: [dist/commands/kill.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.3.1/dist/commands/kill.js)_
468
472
 
469
473
  ## `eggs mom`
470
474
 
@@ -481,7 +485,7 @@ DESCRIPTION
481
485
  ask for mommy - gui helper
482
486
  ```
483
487
 
484
- _See code: [src/commands/mom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/mom.ts)_
488
+ _See code: [dist/commands/mom.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.3.1/dist/commands/mom.js)_
485
489
 
486
490
  ## `eggs produce`
487
491
 
@@ -543,7 +547,7 @@ EXAMPLES
543
547
  in /home/eggs/ovarium and you can customize all you need
544
548
  ```
545
549
 
546
- _See code: [src/commands/produce.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/produce.ts)_
550
+ _See code: [dist/commands/produce.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.3.1/dist/commands/produce.js)_
547
551
 
548
552
  ## `eggs status`
549
553
 
@@ -561,7 +565,7 @@ DESCRIPTION
561
565
  informations about eggs status
562
566
  ```
563
567
 
564
- _See code: [src/commands/status.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/status.ts)_
568
+ _See code: [dist/commands/status.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.3.1/dist/commands/status.js)_
565
569
 
566
570
  ## `eggs syncfrom`
567
571
 
@@ -585,7 +589,7 @@ EXAMPLES
585
589
  $ sudo eggs restore
586
590
  ```
587
591
 
588
- _See code: [src/commands/syncfrom.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/syncfrom.ts)_
592
+ _See code: [dist/commands/syncfrom.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.3.1/dist/commands/syncfrom.js)_
589
593
 
590
594
  ## `eggs syncto`
591
595
 
@@ -608,7 +612,7 @@ EXAMPLES
608
612
  $ sudo eggs syncto
609
613
  ```
610
614
 
611
- _See code: [src/commands/syncto.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/syncto.ts)_
615
+ _See code: [dist/commands/syncto.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.3.1/dist/commands/syncto.js)_
612
616
 
613
617
  ## `eggs tools clean`
614
618
 
@@ -626,6 +630,24 @@ DESCRIPTION
626
630
  clean system log, apt, etc
627
631
  ```
628
632
 
633
+ ## `eggs tools ppa`
634
+
635
+ add/remove PPA repositories (Debian family)
636
+
637
+ ```
638
+ USAGE
639
+ $ eggs tools ppa [-h] [-a] [-r] [-v]
640
+
641
+ FLAGS
642
+ -a, --add add penguins-eggs PPA repository
643
+ -h, --help Show CLI help.
644
+ -r, --remove remove penguins-eggs PPA repository
645
+ -v, --verbose verbose
646
+
647
+ DESCRIPTION
648
+ add/remove PPA repositories (Debian family)
649
+ ```
650
+
629
651
  ## `eggs tools skel`
630
652
 
631
653
  update skel from home configuration
@@ -703,7 +725,7 @@ EXAMPLES
703
725
  update/upgrade the penguin's eggs tool
704
726
  ```
705
727
 
706
- _See code: [src/commands/update.ts](https://github.com/pieroproietti/penguins-eggs/blob/v9.2.6/src/commands/update.ts)_
728
+ _See code: [dist/commands/update.js](https://github.com/pieroproietti/penguins-eggs/blob/v9.3.1/dist/commands/update.js)_
707
729
 
708
730
  ## `eggs version`
709
731
 
@@ -723,7 +745,7 @@ FLAG DESCRIPTIONS
723
745
  Additionally shows the architecture, node version, operating system, and versions of plugins that the CLI is using.
724
746
  ```
725
747
 
726
- _See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v1.1.1/src/commands/version.ts)_
748
+ _See code: [@oclif/plugin-version](https://github.com/oclif/plugin-version/blob/v1.1.3/src/commands/version.ts)_
727
749
 
728
750
  ## `eggs wardrobe get [REPO]`
729
751
 
@@ -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