parrotsec.ipxe 560 B

12345678910111213141516171819202122232425
  1. #!ipxe
  2. # Parrot Security Linux
  3. # https://www.parrotsec.org
  4. goto ${menu}
  5. :parrotsec
  6. set os Parrot Security
  7. menu ${os} Installers
  8. item --gap Official Releases
  9. item stable ${space} ${os} Stable Netinstall
  10. choose parrotsec_version || goto parrotsec_exit
  11. goto parrotsec_boot
  12. :parrotsec_boot
  13. set parrotsec_initrd https://mirrordirector.archive.parrotsec.org/parrot/dists/${parrotsec_version}/main/installer-${arch_a}/current/images/netboot/mini.iso
  14. kernel ${memdisk} iso raw
  15. initrd ${parrotsec_initrd}
  16. boot
  17. goto parrotsec_exit
  18. :parrotsec_exit
  19. clear menu
  20. exit 0