main.yml 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653
  1. boot_domain: boot.netboot.xyz
  2. boot_timeout: 300000
  3. boot_version: 2.x
  4. bootloader_disks:
  5. - netboot.xyz
  6. bootloader_http_enabled: true
  7. bootloader_https_enabled: true
  8. bootloaders:
  9. legacy:
  10. - desc: Used for CD/DVD, Virtual CDs, DRAC/iLO, VMware, Virtual Box
  11. ipxe_bin: ipxe.iso
  12. output_bin: .iso
  13. type: ISO
  14. - desc: Used for creation of USB Keys
  15. ipxe_bin: ipxe.usb
  16. output_bin: .usb
  17. type: USB
  18. - desc: Used for booting from GRUB/EXTLINUX
  19. ipxe_bin: ipxe.lkrn
  20. output_bin: .lkrn
  21. type: Kernel
  22. - desc: Virtual floppy disk for DRAC/iLO, VMware, Virtual Box, etc
  23. ipxe_bin: ipxe.dsk
  24. output_bin: .dsk
  25. type: Floppy
  26. - desc: DHCP boot image file, uses built-in iPXE NIC drivers
  27. ipxe_bin: ipxe.kpxe
  28. output_bin: .kpxe
  29. type: DHCP
  30. - desc: DHCP boot image file, use if you have NIC issues
  31. ipxe_bin: undionly.kpxe
  32. output_bin: -undionly.kpxe
  33. type: DHCP-undionly
  34. uefi:
  35. - desc: EFI BIOS, works in Virtual Box EFI mode
  36. ipxe_bin: ipxe-efi.eiso
  37. output_bin: -efi.iso
  38. type: ISO
  39. - desc: Used for creation of USB Keys
  40. ipxe_bin: ipxe-efi.usb
  41. output_bin: -efi.usb
  42. type: USB
  43. - desc: DHCP EFI boot image file, uses built-in iPXE NIC drivers
  44. ipxe_bin: ipxe.efi
  45. output_bin: .efi
  46. type: DHCP
  47. - desc: EFI w/ Simple Network Protocol, attempts to boot all net devices
  48. ipxe_bin: snp.efi
  49. output_bin: -snp.efi
  50. type: DHCP-snp
  51. - desc: EFI w/ Simple Network Protocol, only boots from device chained from
  52. ipxe_bin: snponly.efi
  53. output_bin: -snponly.efi
  54. type: DHCP-snponly
  55. cert_dir: /etc/netbootxyz/certs
  56. cert_file_filename: ca-netboot-xyz.crt
  57. checksums_filename: '{{ site_name }}-sha256-checksums.txt'
  58. codesign_cert_filename: codesign.crt
  59. codesign_key_filename: codesign.key
  60. custom_generate_menus: false
  61. custom_github_menus: true
  62. custom_templates_dir: '{{ netbootxyz_conf_dir }}/custom'
  63. generate_checksums: true
  64. generate_disks: true
  65. generate_disks_arm: false
  66. generate_disks_efi: true
  67. generate_disks_legacy: true
  68. generate_menus: true
  69. generate_signatures: false
  70. generate_version_file: true
  71. ipxe_branch: master
  72. ipxe_ca_filename: ca-ipxe-org.crt
  73. ipxe_ca_url: http://ca.ipxe.org/ca.crt
  74. ipxe_repo: https://github.com/ipxe/ipxe
  75. ipxe_source_dir: /usr/src/ipxe
  76. ipxe_trust_args: TRUST={{ ipxe_ca_location }}
  77. live_endpoint: https://github.com/netbootxyz
  78. memdisk_location: http://${boot_domain}/memdisk
  79. netbootxyz_conf_dir: /etc/netbootxyz
  80. netbootxyz_root: /var/www/html
  81. pciids_url: https://raw.githubusercontent.com/netbootxyz/pciids/master/pciids.ipxe
  82. releases:
  83. alpinelinux:
  84. base_dir: alpine
  85. enabled: true
  86. menu: linux
  87. mirror: http://dl-cdn.alpinelinux.org
  88. name: Alpine Linux
  89. versions:
  90. - code_name: v3.12
  91. name: '3.12'
  92. - code_name: edge
  93. name: Edge (development)
  94. anarchy:
  95. enabled: true
  96. menu: linux
  97. name: Anarchy Linux
  98. versions:
  99. - code_name: current
  100. name: current
  101. archlinux:
  102. base_dir: archlinux
  103. enabled: true
  104. menu: linux
  105. mirror: mirror.rackspace.com
  106. name: Arch Linux
  107. versions:
  108. - code_name: 2020.06.01
  109. name: 2020.06.01
  110. blackarch:
  111. enabled: true
  112. menu: linux
  113. name: BlackArch
  114. versions:
  115. - code_name: current
  116. name: current
  117. centos:
  118. base_dir: centos
  119. enabled: true
  120. menu: linux
  121. mirror: http://mirror.centos.org
  122. name: CentOS
  123. versions:
  124. - code_name: 8.2.2004
  125. name: '8.2'
  126. - code_name: 8.1.1911
  127. name: '8.1'
  128. - code_name: 8.0.1905
  129. name: '8.0'
  130. - code_name: 8-stream
  131. name: 8.0 Stream
  132. - code_name: 7
  133. name: 7.x Latest
  134. coreos:
  135. base_dir: prod/streams/stable/builds
  136. enabled: true
  137. menu: linux
  138. mirror: https://builds.coreos.fedoraproject.org
  139. name: Fedora CoreOS
  140. versions:
  141. - code_name: 31.20200113.3.1
  142. name: '31'
  143. debian:
  144. archive_mirror: http://archive.debian.org
  145. base_dir: debian
  146. enabled: true
  147. menu: linux
  148. mirror: http://deb.debian.org
  149. name: Debian
  150. versions:
  151. stable:
  152. - code_name: buster
  153. name: 10.0 (buster)
  154. - code_name: stretch
  155. name: 9.0 (stretch)
  156. testing:
  157. - code_name: bullseye
  158. name: bullseye (testing)
  159. - code_name: sid
  160. name: sid (unstable)
  161. devuan:
  162. base_dir: devuan
  163. enabled: true
  164. menu: linux
  165. mirror: http://deb.devuan.org
  166. name: Devuan
  167. versions:
  168. stable:
  169. - code_name: beowulf
  170. name: 3.0.0 Beowulf (stable)
  171. - code_name: ascii
  172. name: 2.1 ASCII (oldstable)
  173. - code_name: jessie
  174. name: 1.0 Jessie (oldoldstable)
  175. testing:
  176. - code_name: chimaera
  177. name: Chimaera (testing)
  178. fedora:
  179. base_dir: fedora
  180. enabled: true
  181. menu: linux
  182. mirror: http://mirrors.kernel.org
  183. name: Fedora
  184. versions:
  185. - code_name: '32'
  186. name: '32'
  187. - code_name: '31'
  188. name: '31'
  189. - code_name: '30'
  190. name: '30'
  191. flatcar:
  192. enabled: true
  193. menu: linux
  194. mirror: ''
  195. name: Container Linux by Flatcar
  196. versions:
  197. - code_name: stable
  198. name: Stable Channel
  199. - code_name: beta
  200. name: Beta Channel
  201. - code_name: alpha
  202. name: Alpha Channel
  203. freebsd:
  204. enabled: true
  205. menu: bsd
  206. name: FreeBSD
  207. freedos:
  208. base_dir: download/download
  209. enabled: true
  210. menu: dos
  211. mirror: http://www.freedos.org
  212. name: FreeDOS
  213. versions:
  214. - code_name: FD12FULL
  215. name: 1.2 Full Installer
  216. - code_name: FD12LITE
  217. name: 1.2 Lite Installer
  218. gentoo:
  219. enabled: true
  220. menu: linux
  221. name: Gentoo
  222. ipfire:
  223. base_dir: releases/ipfire-2.x
  224. enabled: true
  225. menu: linux
  226. mirror: https://downloads.ipfire.org
  227. name: IPFire
  228. versions:
  229. - code_name: 2.25-core145
  230. name: 2.25 Core145
  231. k3os:
  232. enabled: true
  233. menu: linux
  234. mirror: https://github.com/rancher/k3os/releases/download/
  235. name: k3OS
  236. versions:
  237. - code_name: v0.8.0
  238. name: v0.8.0
  239. kali:
  240. base_dir: kali
  241. enabled: true
  242. menu: linux
  243. mirror: http://http.kali.org
  244. name: Kali Linux
  245. versions:
  246. - code_name: rolling
  247. name: Rolling Edition (2020.1)
  248. livegrml:
  249. enabled: true
  250. menu: live
  251. mirror: http://download.grml.org
  252. name: Grml Live Linux
  253. versions:
  254. - code_name: grml-full
  255. name: 2018.12 Full
  256. - code_name: grml-small
  257. name: 2018.12 Small
  258. mageia:
  259. base_dir: mageia
  260. enabled: true
  261. menu: linux
  262. mirror: http://mirrors.kernel.org
  263. name: Mageia
  264. versions:
  265. - code_name: '7.1'
  266. name: '7.1'
  267. - code_name: cauldron
  268. name: cauldron
  269. nixos:
  270. enabled: true
  271. menu: linux
  272. name: NixOS
  273. openbsd:
  274. base_dir: pub/OpenBSD
  275. enabled: true
  276. menu: bsd
  277. mirror: http://ftp.openbsd.org
  278. name: OpenBSD
  279. versions:
  280. - code_name: '6.6'
  281. image_ver: '66'
  282. name: '6.6'
  283. - code_name: '6.5'
  284. image_ver: '65'
  285. name: '6.5'
  286. - code_name: '6.4'
  287. image_ver: '64'
  288. name: '6.4'
  289. - code_name: '6.3'
  290. image_ver: '63'
  291. name: '6.3'
  292. - code_name: snapshots
  293. image_ver: '66'
  294. name: 6.6 Latest Snapshot
  295. opensuse:
  296. base_dir: distribution/leap
  297. enabled: true
  298. menu: linux
  299. mirror: http://download.opensuse.org
  300. name: OpenSUSE
  301. versions:
  302. - code_name: '15.1'
  303. name: openSUSE Leap 15.1
  304. - code_name: '15.0'
  305. name: openSUSE Leap 15.0
  306. - code_name: '42.3'
  307. name: openSUSE Leap 42.3
  308. - code_name: tumbleweed
  309. name: openSUSE tumbleweed
  310. oracle:
  311. enabled: true
  312. menu: linux
  313. mirror: https://yum.oracle.com
  314. name: Oracle Linux
  315. paths:
  316. 7: /repo/OracleLinux/OL7/latest/x86_64
  317. 8: /repo/OracleLinux/OL8/baseos/latest/x86_64
  318. parrotsec:
  319. enabled: true
  320. menu: linux
  321. name: Parrot Security
  322. versions:
  323. - code_name: stable
  324. name: Stable Netinstall
  325. rancheros:
  326. base_dir: os/latest
  327. enabled: true
  328. menu: linux
  329. mirror: http://releases.rancher.com
  330. name: RancherOS
  331. versions:
  332. - code_name: latest
  333. name: Latest (20 MB)
  334. rhel:
  335. enabled: true
  336. menu: linux
  337. name: Red Hat Enterprise Linux
  338. scientific:
  339. base_dir: linux/scientific
  340. enabled: true
  341. menu: linux
  342. mirror: http://ftp1.scientificlinux.org
  343. name: Scientific Linux
  344. versions:
  345. - code_name: '7.7'
  346. name: '7.7'
  347. - code_name: '7.6'
  348. name: '7.6'
  349. - code_name: '6.10'
  350. name: '6.10'
  351. - code_name: '6.9'
  352. name: '6.9'
  353. slackware:
  354. base_dir: slackware
  355. enabled: true
  356. menu: linux
  357. mirror: http://mirror.rackspace.com
  358. name: Slackware
  359. versions:
  360. - code_name: current
  361. name: Current
  362. - code_name: '14.2'
  363. name: '14.2'
  364. - code_name: '14.1'
  365. name: '14.1'
  366. smartos:
  367. base_dir: /platform/i86pc/
  368. enabled: true
  369. menu: unix
  370. mirror: https://netboot.joyent.com/os/
  371. name: SmartOS
  372. versions:
  373. - code_name: 20200603T203505Z
  374. name: 20200603T203505Z
  375. - code_name: 20200520T174734Z
  376. name: 20200520T174734Z
  377. - code_name: 20200506T235114Z
  378. name: 20200506T235114Z
  379. - code_name: 20200424T174452Z
  380. name: 20200424T174452Z
  381. - code_name: 20200422T203030Z
  382. name: 20200422T203030Z
  383. - code_name: 20200408T231825Z
  384. name: 20200408T231825Z
  385. tinycore:
  386. enabled: true
  387. menu: linux
  388. mirror: http://distro.ibiblio.org/tinycorelinux
  389. name: Tiny Core Linux
  390. versions:
  391. - arch: x86
  392. code_name: core
  393. initrd: /11.x/x86/release/distribution_files/core.gz
  394. kernel: /11.x/x86/release/distribution_files/vmlinuz
  395. name: Core
  396. - arch: x86_64
  397. code_name: corepure
  398. initrd: /11.x/x86_64/release/distribution_files/corepure64.gz
  399. kernel: /11.x/x86_64/release/distribution_files/vmlinuz64
  400. name: CorePure
  401. - arch: x86
  402. code_name: dcorebionic
  403. initrd: /dCore/x86/release/dCore-bionic/dCore-bionic.gz
  404. kernel: /dCore/x86/release/dCore-bionic/vmlinuz-bionic
  405. name: dCore Bionic
  406. - arch: x86
  407. code_name: dcorebionicplus
  408. initrd: /dCore/x86/release/dCore-bionic/dCorePlus-bionic.gz
  409. kernel: /dCore/x86/release/dCore-bionic/vmlinuz-bionic
  410. name: dCore Bionic Plus
  411. - arch: x86
  412. code_name: dcorejessie
  413. initrd: /dCore/x86/release/dCore-jessie/dCore-jessie.gz
  414. kernel: /dCore/x86/release/dCore-jessie/vmlinuz-jessie
  415. name: dCore Jessie
  416. - arch: x86
  417. code_name: dcorejessieplus
  418. initrd: /dCore/x86/release/dCore-jessie/dCorePlus-jessie.gz
  419. kernel: /dCore/x86/release/dCore-jessie/vmlinuz-jessie
  420. name: dCore Jessie Plus
  421. - arch: x86
  422. code_name: dcorestretch
  423. initrd: /dCore/x86/release/dCore-stretch/dCore-stretch.gz
  424. kernel: /dCore/x86/release/dCore-stretch/vmlinuz-stretch
  425. name: dCore Stretch
  426. - arch: x86
  427. code_name: dcorestretchplus
  428. initrd: /dCore/x86/release/dCore-stretch/dCorePlus-stretch.gz
  429. kernel: /dCore/x86/release/dCore-stretch/vmlinuz-stretch
  430. name: dCore Stretch Plus
  431. - arch: x86
  432. code_name: dcoretrusty
  433. initrd: /dCore/x86/release/dCore-trusty/dCore-trusty.gz
  434. kernel: /dCore/x86/release/dCore-trusty/vmlinuz-trusty
  435. name: dCore Trusty
  436. - arch: x86
  437. code_name: dcoretrustyplus
  438. initrd: /dCore/x86/release/dCore-trusty/dCorePlus-trusty.gz
  439. kernel: /dCore/x86/release/dCore-trusty/vmlinuz-trusty
  440. name: dCore Trusty Plus
  441. - arch: x86
  442. code_name: dcorewheezy
  443. initrd: /dCore/x86/release/dCore-wheezy/dCore-wheezy.gz
  444. kernel: /dCore/x86/release/dCore-wheezy/vmlinuz-wheezy
  445. name: dCore Wheezy
  446. - arch: x86
  447. code_name: dcorewheezyplus
  448. initrd: /dCore/x86/release/dCore-wheezy/dCorePlus-wheezy.gz
  449. kernel: /dCore/x86/release/dCore-wheezy/vmlinuz-wheezy
  450. name: dCore Wheezy Plus
  451. - arch: x86
  452. code_name: dcorexenial
  453. initrd: /dCore/x86/release/dCore-xenial/dCore-xenial.gz
  454. kernel: /dCore/x86/release/dCore-xenial/vmlinuz-xenial
  455. name: dCore Xenial
  456. - arch: x86
  457. code_name: dcorexenialplus
  458. initrd: /dCore/x86/release/dCore-xenial/dCorePlus-xenial.gz
  459. kernel: /dCore/x86/release/dCore-xenial/vmlinuz-xenial
  460. name: dCore Xenial Plus
  461. - arch: x86_64
  462. code_name: dcore64bionic
  463. initrd: /dCore/x86_64/release/dCore-bionic64/dCore-bionic64.gz
  464. kernel: /dCore/x86_64/release/dCore-bionic64/vmlinuz-bionic64
  465. name: dCore64 Bionic
  466. - arch: x86_64
  467. code_name: dcore64bionicplus
  468. initrd: /dCore/x86_64/release/dCore-bionic64/dCorePlus-bionic64.gz
  469. kernel: /dCore/x86_64/release/dCore-bionic64/vmlinuz-bionic64
  470. name: dCore64 Bionic Plus
  471. - arch: x86_64
  472. code_name: dcore64buster
  473. initrd: /dCore/x86_64/release/dCore-buster64/dCore-buster64.gz
  474. kernel: /dCore/x86_64/release/dCore-buster64/vmlinuz-buster64
  475. name: dCore64 Buster
  476. - arch: x86_64
  477. code_name: dcore64busterplus
  478. initrd: /dCore/x86_64/release/dCore-buster64/dCorePlus-buster64.gz
  479. kernel: /dCore/x86_64/release/dCore-buster64/vmlinuz-buster64
  480. name: dCore64 Buster Plus
  481. - arch: x86_64
  482. code_name: dcore64stretch
  483. initrd: /dCore/x86_64/release/dCore-stretch64/dCore-stretch64.gz
  484. kernel: /dCore/x86_64/release/dCore-stretch64/vmlinuz-stretch64
  485. name: dCore64 Stretch
  486. - arch: x86_64
  487. code_name: dcore64stretchplus
  488. initrd: /dCore/x86_64/release/dCore-stretch64/dCorePlus-stretch64.gz
  489. kernel: /dCore/x86_64/release/dCore-stretch64/vmlinuz-stretch64
  490. name: dCore Stretch Plus
  491. ubuntu:
  492. archive_mirror: http://old-releases.ubuntu.com
  493. base_dir: ubuntu
  494. enabled: true
  495. menu: linux
  496. mirror: http://archive.ubuntu.com
  497. name: Ubuntu
  498. versions:
  499. - code_name: focal
  500. name: 20.04 LTS Focal Fossa
  501. - code_name: eoan
  502. name: 19.10 Eoan Ermine
  503. - code_name: bionic
  504. name: 18.04 LTS Bionic Beaver
  505. - code_name: xenial
  506. name: 16.04 LTS Xenial Xerus
  507. zeninstall:
  508. enabled: true
  509. menu: linux
  510. name: Zen Installer Arch
  511. versions:
  512. - code_name: current
  513. name: current
  514. sigs_dir: '{{ netbootxyz_root }}/sigs'
  515. sigs_enabled: false
  516. sigs_location: http://${boot_domain}/sigs/
  517. sigs_menu: false
  518. site_name: netboot.xyz
  519. time_server: 0.pool.ntp.org
  520. utilitiesefi:
  521. 4mlinux:
  522. enabled: true
  523. name: 4MLinux
  524. type: ipxemenu
  525. bootrepair:
  526. enabled: true
  527. initrd: ${live_endpoint}{{ endpoints.bootrepair.path }}initrd
  528. kernel: ${live_endpoint}{{ endpoints.bootrepair.path }}vmlinuz ip=dhcp boot=casper
  529. netboot=http fetch=${live_endpoint}{{ endpoints.bootrepair.path }}filesystem.squashfs
  530. initrd=initrd
  531. name: Boot Repair CD
  532. type: direct
  533. caine:
  534. enabled: true
  535. initrd: ${live_endpoint}{{ endpoints.caine.path }}initrd
  536. kernel: ${live_endpoint}{{ endpoints.caine.path }}vmlinuz ip=dhcp boot=casper
  537. netboot=http fetch=${live_endpoint}{{ endpoints.caine.path }}filesystem.squashfs
  538. initrd=initrd
  539. name: CAINE
  540. type: direct
  541. clonezilla:
  542. enabled: true
  543. name: Clonezilla
  544. type: ipxemenu
  545. gparted:
  546. enabled: true
  547. name: GParted
  548. type: ipxemenu
  549. grml:
  550. enabled: true
  551. name: Grml
  552. type: ipxemenu
  553. kaspersky:
  554. enabled: true
  555. name: Kaspersky Rescue Disk
  556. type: ipxemenu
  557. rescatux:
  558. enabled: true
  559. initrd: ${live_endpoint}{{ endpoints.rescatux.path }}initrd
  560. kernel: ${live_endpoint}{{ endpoints.rescatux.path }}vmlinuz boot=live fetch=${live_endpoint}{{
  561. endpoints.rescatux.path }}filesystem.squashfs selinux=1 security=selinux enforcing=0
  562. initrd=initrd
  563. name: Rescatux
  564. type: direct
  565. systemrescue:
  566. enabled: true
  567. name: System Rescue CD
  568. type: ipxemenu
  569. utilitiespcbios:
  570. 4mlinux:
  571. enabled: true
  572. name: 4MLinux
  573. type: ipxemenu
  574. avg:
  575. enabled: true
  576. name: AVG Rescue CD
  577. type: memdisk
  578. util_path: http://download.avg.com/filedir/inst/avg_arl_cdi_all_120_160420a12074.iso
  579. version: 160420a12074
  580. bootrepair:
  581. enabled: true
  582. initrd: ${live_endpoint}{{ endpoints.bootrepair.path }}initrd
  583. kernel: ${live_endpoint}{{ endpoints.bootrepair.path }}vmlinuz ip=dhcp boot=casper
  584. netboot=http fetch=${live_endpoint}{{ endpoints.bootrepair.path }}filesystem.squashfs
  585. initrd=initrd
  586. name: Boot Repair CD
  587. type: direct
  588. breakin:
  589. enabled: true
  590. initrd: ${live_endpoint}{{ endpoints.breakin.path }}initrd
  591. kernel: ${live_endpoint}{{ endpoints.breakin.path }}vmlinuz sshpasswd=breakin
  592. startup=breakin initrd=initrd
  593. name: Breakin
  594. type: direct
  595. caine:
  596. enabled: true
  597. initrd: ${live_endpoint}{{ endpoints.caine.path }}initrd
  598. kernel: ${live_endpoint}{{ endpoints.caine.path }}vmlinuz ip=dhcp boot=casper
  599. netboot=http fetch=${live_endpoint}{{ endpoints.caine.path }}filesystem.squashfs
  600. initrd=initrd
  601. name: CAINE
  602. type: direct
  603. clonezilla:
  604. enabled: true
  605. name: Clonezilla
  606. type: ipxemenu
  607. dban:
  608. enabled: true
  609. name: DBAN
  610. type: ipxemenu
  611. gparted:
  612. enabled: true
  613. name: GParted
  614. type: ipxemenu
  615. grml:
  616. enabled: true
  617. name: Grml
  618. type: ipxemenu
  619. kaspersky:
  620. enabled: true
  621. name: Kaspersky Rescue Disk
  622. type: ipxemenu
  623. memtest:
  624. enabled: true
  625. name: Memtest
  626. type: memtest
  627. util_path: https://boot.netboot.xyz/utils/memtest86-5.01.0
  628. version: 5.01.0
  629. rescatux:
  630. enabled: true
  631. initrd: ${live_endpoint}{{ endpoints.rescatux.path }}initrd
  632. kernel: ${live_endpoint}{{ endpoints.rescatux.path }}vmlinuz boot=live fetch=${live_endpoint}{{
  633. endpoints.rescatux.path }}filesystem.squashfs selinux=1 security=selinux enforcing=0
  634. initrd=initrd
  635. name: Rescatux
  636. type: direct
  637. supergrub:
  638. enabled: true
  639. name: SuperGRUB
  640. type: memdisk
  641. util_path: http://master.dl.sourceforge.net/project/supergrub2/2.04s1/super_grub2_disk_2.04s1/super_grub2_disk_hybrid_2.04s1.iso
  642. version: 2.04s1
  643. systemrescue:
  644. enabled: true
  645. name: System Rescue CD
  646. type: ipxemenu
  647. ubcd:
  648. enabled: true
  649. name: Ultimate Boot CD (UBCD)
  650. type: memdisk
  651. util_path: http://mirror.sysadminguide.net/ubcd/ubcd538.iso
  652. version: '538'
  653. wimboot_location: http://${boot_domain}/wimboot