parrotsec.ipxe.j2 644 B

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