main.yml 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860
  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. arm:
  10. - desc: DHCP EFI boot image file, uses built-in iPXE NIC drivers
  11. ipxe_bin: ipxe.efi
  12. output_bin: -arm64.efi
  13. type: DHCP
  14. - desc: EFI w/ Simple Network Protocol, attempts to boot all net devices
  15. ipxe_bin: snp.efi
  16. output_bin: -arm64-snp.efi
  17. type: DHCP-snp
  18. - desc: EFI w/ Simple Network Protocol, only boots from device chained from
  19. ipxe_bin: snponly.efi
  20. output_bin: -arm64-snponly.efi
  21. type: DHCP-snponly
  22. hybrid:
  23. - desc: Used for CD/DVD, Virtual CDs, DRAC/iLO, VMware, Virtual Box
  24. ipxe_bin: ipxe.iso
  25. output_bin: .iso
  26. type: ISO
  27. - desc: Used for creation of USB Keys
  28. ipxe_bin: ipxe.img
  29. output_bin: .img
  30. type: IMG
  31. legacy:
  32. - desc: Used for booting from GRUB/EXTLINUX
  33. ipxe_bin: ipxe.lkrn
  34. output_bin: .lkrn
  35. type: Kernel
  36. - desc: Virtual floppy disk for DRAC/iLO, VMware, Virtual Box, etc
  37. ipxe_bin: ipxe.dsk
  38. output_bin: .dsk
  39. type: Floppy
  40. - desc: Padded Virtual floppy disk for DRAC/iLO, VMware, Virtual Box, etc
  41. ipxe_bin: ipxe.pdsk
  42. output_bin: .pdsk
  43. type: Floppy
  44. - desc: DHCP boot image file, uses built-in iPXE NIC drivers
  45. ipxe_bin: ipxe.kpxe
  46. output_bin: .kpxe
  47. type: DHCP
  48. - desc: DHCP boot image file, use if you have NIC issues
  49. ipxe_bin: undionly.kpxe
  50. output_bin: -undionly.kpxe
  51. type: DHCP-undionly
  52. multiarch:
  53. - desc: Used for CD/DVD, Virtual CDs, DRAC/iLO, VMware, Virtual Box
  54. ipxe_bin: ipxe.iso
  55. output_bin: -multiarch.iso
  56. type: ISO
  57. - desc: Used for creation of USB Keys
  58. ipxe_bin: ipxe.img
  59. output_bin: -multiarch.img
  60. type: IMG
  61. rpi:
  62. - desc: Raspberry Pi 4 - USB/SD Card Image
  63. ipxe_bin: rpi4-sdcard.img
  64. output_bin: -rpi4-sdcard.img
  65. type: USB/SD Card
  66. - desc: Raspberry Pi 4 - EFI Image
  67. ipxe_bin: snp.efi
  68. output_bin: -rpi4-snp.efi
  69. type: DHCP-snp
  70. uefi:
  71. - desc: DHCP EFI boot image file, uses built-in iPXE NIC drivers
  72. ipxe_bin: ipxe.efi
  73. output_bin: .efi
  74. type: DHCP
  75. - desc: EFI w/ Simple Network Protocol, attempts to boot all net devices
  76. ipxe_bin: snp.efi
  77. output_bin: -snp.efi
  78. type: DHCP-snp
  79. - desc: EFI w/ Simple Network Protocol, only boots from device chained from
  80. ipxe_bin: snponly.efi
  81. output_bin: -snponly.efi
  82. type: DHCP-snponly
  83. cert_dir: /etc/netbootxyz/certs
  84. cert_file_filename: ca-netboot-xyz.crt
  85. checksums_filename: '{{ site_name }}-sha256-checksums.txt'
  86. codesign_cert_filename: codesign.crt
  87. codesign_key_filename: codesign.key
  88. custom_generate_menus: false
  89. custom_github_menus: true
  90. custom_templates_dir: '{{ netbootxyz_conf_dir }}/custom'
  91. custom_url_menus: true
  92. early_menu_contents: '### put early ipxe settings here'
  93. early_menu_enabled: false
  94. generate_checksums: true
  95. generate_disks: true
  96. generate_disks_arm: false
  97. generate_disks_efi: true
  98. generate_disks_hybrid: false
  99. generate_disks_legacy: true
  100. generate_disks_linux: false
  101. generate_disks_rpi: false
  102. generate_local_vars: true
  103. generate_menus: true
  104. generate_signatures: false
  105. generate_version_file: true
  106. ipxe_branch: master
  107. ipxe_ca_filename: ca-ipxe-org.crt
  108. ipxe_ca_url: http://ca.ipxe.org/ca.crt
  109. ipxe_debug_enabled: false
  110. ipxe_debug_options: httpcore,tls
  111. ipxe_repo: https://github.com/ipxe/ipxe
  112. ipxe_source_dir: /usr/src/ipxe
  113. kernel_params: initrd=initrd.magic ${cmdline}
  114. live_endpoint: https://github.com/netbootxyz
  115. memdisk_location: http://${boot_domain}/memdisk
  116. netbootxyz_conf_dir: /etc/netbootxyz
  117. netbootxyz_root: /var/www/html
  118. pciids_url: https://raw.githubusercontent.com/netbootxyz/pciids/master/pciids.ipxe
  119. pipxe_branch: master
  120. pipxe_repo: https://github.com/netbootxyz/pipxe
  121. pipxe_source_dir: /usr/src/pipxe
  122. releases:
  123. almalinux:
  124. base_dir: almalinux
  125. enabled: true
  126. menu: linux
  127. mirror: http://repo.almalinux.org
  128. name: AlmaLinux
  129. versions:
  130. - code_name: 9.2
  131. name: 9.2
  132. - code_name: 9.1
  133. name: 9.1
  134. - code_name: 9.0
  135. name: 9.0
  136. - code_name: 8.7
  137. name: 8.7
  138. alpinelinux:
  139. base_dir: alpine
  140. enabled: true
  141. menu: linux
  142. mirror: http://dl-cdn.alpinelinux.org
  143. name: Alpine Linux
  144. versions:
  145. - code_name: v3.18
  146. name: '3.18'
  147. - code_name: edge
  148. name: Edge (development)
  149. anarchy:
  150. enabled: true
  151. menu: linux
  152. name: Anarchy Linux
  153. versions:
  154. - code_name: current
  155. name: current
  156. archlinux:
  157. base_dir: archlinux
  158. enabled: true
  159. menu: linux
  160. mirror: mirrors.kernel.org
  161. name: Arch Linux
  162. versions:
  163. - code_name: 2023.07.01
  164. name: 2023.07.01
  165. blackarch:
  166. enabled: true
  167. menu: linux
  168. name: BlackArch
  169. versions:
  170. - code_name: current
  171. name: current
  172. centos:
  173. base_dir: centos
  174. enabled: true
  175. menu: linux
  176. mirror: http://mirror.centos.org
  177. name: CentOS
  178. versions:
  179. - code_name: 9-stream
  180. name: 9.0 Stream
  181. - code_name: 8.5.2111
  182. name: '8.5'
  183. - code_name: 8
  184. name: 8.x Latest
  185. - code_name: 8-stream
  186. name: 8.0 Stream
  187. - code_name: 7
  188. name: 7.x Latest
  189. coreos:
  190. base_dir: prod/streams
  191. enabled: true
  192. menu: linux
  193. mirror: https://builds.coreos.fedoraproject.org
  194. name: Fedora CoreOS
  195. versions:
  196. - code_name: 38.20230625.3.0
  197. name: stable
  198. - code_name: 38.20230709.2.0
  199. name: testing
  200. - code_name: 38.20230709.1.1
  201. name: next
  202. debian:
  203. archive_mirror: http://archive.debian.org
  204. base_dir: debian
  205. enabled: true
  206. menu: linux
  207. mirror: http://deb.debian.org
  208. name: Debian
  209. versions:
  210. stable:
  211. - code_name: bookworm
  212. name: 12.0 (bookworm)
  213. - code_name: bullseye
  214. name: 11.0 (bullseye)
  215. - code_name: buster
  216. name: 10.0 (buster)
  217. testing:
  218. - code_name: trixie
  219. name: trixie (testing)
  220. - code_name: sid
  221. name: sid (unstable)
  222. devuan:
  223. base_dir: devuan
  224. enabled: true
  225. menu: linux
  226. mirror: http://deb.devuan.org
  227. name: Devuan
  228. versions:
  229. stable:
  230. - code_name: chimaera
  231. name: 4.0 Chimaera (stable)
  232. - code_name: beowulf
  233. name: 3.0 Beowulf (oldstable)
  234. - code_name: ascii
  235. name: 2.1 ASCII (oldoldstable)
  236. testing:
  237. - code_name: daedalus
  238. name: Daedalus (testing)
  239. fedora:
  240. base_dir: fedora
  241. enabled: true
  242. menu: linux
  243. mirror: http://mirrors.kernel.org
  244. name: Fedora
  245. versions:
  246. - code_name: 38
  247. name: 38
  248. - code_name: 37
  249. name: 37
  250. - code_name: 36
  251. name: 36
  252. flatcar:
  253. enabled: true
  254. menu: linux
  255. mirror: ''
  256. name: Flatcar Container Linux
  257. versions:
  258. - code_name: stable
  259. name: Stable Channel
  260. - code_name: beta
  261. name: Beta Channel
  262. - code_name: alpha
  263. name: Alpha Channel
  264. - code_name: edge
  265. name: Edge Channel
  266. freebsd:
  267. enabled: true
  268. menu: bsd
  269. name: FreeBSD
  270. freedos:
  271. base_dir: pub/micro/pc-stuff/freedos/files/distributions/1.3/official
  272. enabled: true
  273. menu: dos
  274. mirror: http://www.ibiblio.org
  275. name: FreeDOS
  276. versions:
  277. - code_name: FD13-FullUSB
  278. name: 1.3 Full Installer
  279. - code_name: FD13-LiteUSB
  280. name: 1.3 Lite Installer
  281. gentoo:
  282. enabled: true
  283. menu: linux
  284. name: Gentoo
  285. harvester:
  286. enabled: true
  287. menu: linux
  288. name: Harvester
  289. ipfire:
  290. base_dir: releases/ipfire-2.x
  291. enabled: true
  292. menu: linux
  293. mirror: https://downloads.ipfire.org
  294. name: IPFire
  295. versions:
  296. - code_name: 2.27-core176
  297. name: 2.27 Core176
  298. k3os:
  299. enabled: true
  300. menu: linux
  301. mirror: https://github.com/rancher/k3os/releases
  302. name: k3OS
  303. kali:
  304. base_dir: kali
  305. enabled: true
  306. menu: linux
  307. mirror: http://http.kali.org
  308. name: Kali Linux
  309. versions:
  310. - code_name: rolling
  311. name: Rolling Edition
  312. mageia:
  313. base_dir: mageia
  314. enabled: true
  315. menu: linux
  316. mirror: http://mirrors.kernel.org
  317. name: Mageia
  318. versions:
  319. - code_name: '8'
  320. name: '8'
  321. - code_name: cauldron
  322. name: cauldron
  323. nixos:
  324. base_dir: nixos
  325. enabled: true
  326. menu: linux
  327. name: NixOS
  328. versions:
  329. - code_name: nixos-20.09
  330. name: nixos-20.09
  331. - code_name: nixos-21.05
  332. name: nixos-21.05
  333. - code_name: nixos-21.11
  334. name: nixos-21.11
  335. - code_name: nixos-22.05
  336. name: nixos-22.05
  337. - code_name: nixos-22.11
  338. name: nixos-22.11
  339. - code_name: nixos-23.05
  340. name: nixos-23.05
  341. - code_name: nixos-unstable
  342. name: nixos-unstable
  343. openEuler:
  344. base_dir: null
  345. enabled: true
  346. menu: linux
  347. mirror: http://repo.openeuler.org
  348. name: openEuler
  349. versions:
  350. - code_name: openEuler-20.03-LTS-SP3
  351. name: openEuler-20.03-LTS-SP3
  352. - code_name: openEuler-22.03-LTS
  353. name: openEuler-22.03-LTS
  354. - code_name: openEuler-22.09
  355. name: openEuler-22.09
  356. - code_name: openEuler-22.03-LTS-SP1
  357. name: openEuler-22.03-LTS-SP1
  358. openbsd:
  359. base_dir: pub/OpenBSD
  360. enabled: true
  361. menu: bsd
  362. mirror: http://ftp.openbsd.org
  363. name: OpenBSD
  364. versions:
  365. - code_name: '7.3'
  366. image_ver: '73'
  367. name: '7.3'
  368. - code_name: '7.2'
  369. image_ver: '72'
  370. name: '7.2'
  371. - code_name: '7.1'
  372. image_ver: '71'
  373. name: '7.1'
  374. - code_name: '7.0'
  375. image_ver: '70'
  376. name: '7.0'
  377. - code_name: '6.9'
  378. image_ver: '69'
  379. name: '6.9'
  380. - code_name: '6.8'
  381. image_ver: '68'
  382. name: '6.8'
  383. - code_name: '6.7'
  384. image_ver: '67'
  385. name: '6.7'
  386. - code_name: '6.6'
  387. image_ver: '66'
  388. name: '6.6'
  389. - code_name: '6.5'
  390. image_ver: '65'
  391. name: '6.5'
  392. - code_name: '6.4'
  393. image_ver: '64'
  394. name: '6.4'
  395. - code_name: snapshots
  396. image_ver: '69'
  397. name: 6.9 Latest Snapshot
  398. opensuse:
  399. base_dir: distribution/leap
  400. enabled: true
  401. menu: linux
  402. mirror: http://download.opensuse.org
  403. name: OpenSUSE
  404. versions:
  405. - code_name: '15.5'
  406. name: openSUSE Leap 15.5
  407. - code_name: '15.4'
  408. name: openSUSE Leap 15.4
  409. - code_name: '15.3'
  410. name: openSUSE Leap 15.3
  411. - code_name: tumbleweed
  412. name: openSUSE tumbleweed
  413. oracle:
  414. enabled: true
  415. menu: linux
  416. mirror: https://yum.oracle.com
  417. name: Oracle Linux
  418. paths:
  419. 7: /repo/OracleLinux/OL7/latest
  420. 8: /repo/OracleLinux/OL8/baseos/latest
  421. 9: /repo/OracleLinux/OL9/baseos/latest
  422. photon:
  423. enabled: true
  424. menu: linux
  425. name: VMware Photon
  426. proxmox:
  427. enabled: true
  428. menu: linux
  429. name: Proxmox
  430. rhel:
  431. enabled: true
  432. menu: linux
  433. name: Red Hat Enterprise Linux
  434. rockylinux:
  435. base_dir: pub/rocky
  436. enabled: true
  437. menu: linux
  438. mirror: http://download.rockylinux.org
  439. name: Rocky Linux
  440. versions:
  441. - code_name: 9
  442. name: 9 (Latest)
  443. - code_name: 8
  444. name: 8 (Latest)
  445. scientific:
  446. base_dir: linux/scientific
  447. enabled: true
  448. menu: linux
  449. mirror: http://ftp1.scientificlinux.org
  450. name: Scientific Linux
  451. versions:
  452. - code_name: '7.7'
  453. name: '7.7'
  454. - code_name: '7.6'
  455. name: '7.6'
  456. - code_name: '6.10'
  457. name: '6.10'
  458. - code_name: '6.9'
  459. name: '6.9'
  460. slackware:
  461. base_dir: slackware
  462. enabled: true
  463. menu: linux
  464. mirror: http://mirrors.kernel.org
  465. name: Slackware
  466. versions:
  467. - code_name: current
  468. name: Current
  469. - code_name: '14.2'
  470. name: '14.2'
  471. - code_name: '14.1'
  472. name: '14.1'
  473. - code_name: '15.0'
  474. name: '15.0'
  475. smartos:
  476. base_dir: /platform/i86pc/
  477. enabled: true
  478. menu: unix
  479. mirror: https://netboot.joyent.com/os/
  480. name: SmartOS
  481. versions:
  482. - code_name: 20230713T000721Z
  483. name: 20230713T000721Z
  484. - code_name: 20230629T053622Z
  485. name: 20230629T053622Z
  486. - code_name: 20230615T000418Z
  487. name: 20230615T000418Z
  488. - code_name: 20230601T000726Z
  489. name: 20230601T000726Z
  490. talos:
  491. enabled: true
  492. menu: linux
  493. mirror: https://github.com/siderolabs/talos/releases
  494. name: Talos
  495. platforms:
  496. - key: metal
  497. name: Bare Metal
  498. - key: aws
  499. name: AWS
  500. - key: azure
  501. name: Azure
  502. - key: digital-ocean
  503. name: Digital Ocean
  504. - key: gcp
  505. name: GCP
  506. - key: metal
  507. name: Equinix Metal
  508. - key: vmware
  509. name: VMware
  510. tinycore:
  511. enabled: true
  512. menu: linux
  513. mirror: http://distro.ibiblio.org/tinycorelinux
  514. name: Tiny Core Linux
  515. versions:
  516. - arch: x86
  517. code_name: core
  518. initrd: /14.x/x86/release/distribution_files/core.gz
  519. kernel: /14.x/x86/release/distribution_files/vmlinuz
  520. name: Core
  521. - arch: x86_64
  522. code_name: corepure
  523. initrd: /14.x/x86_64/release/distribution_files/corepure64.gz
  524. kernel: /14.x/x86_64/release/distribution_files/vmlinuz64
  525. name: CorePure
  526. - arch: x86
  527. code_name: dcorebionic
  528. initrd: /dCore/x86/release/dCore-bionic/dCore-bionic.gz
  529. kernel: /dCore/x86/release/dCore-bionic/vmlinuz-bionic
  530. name: dCore Bionic
  531. - arch: x86
  532. code_name: dcorebionicplus
  533. initrd: /dCore/x86/release/dCore-bionic/dCorePlus-bionic.gz
  534. kernel: /dCore/x86/release/dCore-bionic/vmlinuz-bionic
  535. name: dCore Bionic Plus
  536. - arch: x86
  537. code_name: dcorejessie
  538. initrd: /dCore/x86/release/dCore-jessie/dCore-jessie.gz
  539. kernel: /dCore/x86/release/dCore-jessie/vmlinuz-jessie
  540. name: dCore Jessie
  541. - arch: x86
  542. code_name: dcorejessieplus
  543. initrd: /dCore/x86/release/dCore-jessie/dCorePlus-jessie.gz
  544. kernel: /dCore/x86/release/dCore-jessie/vmlinuz-jessie
  545. name: dCore Jessie Plus
  546. - arch: x86
  547. code_name: dcorestretch
  548. initrd: /dCore/x86/release/dCore-stretch/dCore-stretch.gz
  549. kernel: /dCore/x86/release/dCore-stretch/vmlinuz-stretch
  550. name: dCore Stretch
  551. - arch: x86
  552. code_name: dcorestretchplus
  553. initrd: /dCore/x86/release/dCore-stretch/dCorePlus-stretch.gz
  554. kernel: /dCore/x86/release/dCore-stretch/vmlinuz-stretch
  555. name: dCore Stretch Plus
  556. - arch: x86
  557. code_name: dcoretrusty
  558. initrd: /dCore/x86/release/dCore-trusty/dCore-trusty.gz
  559. kernel: /dCore/x86/release/dCore-trusty/vmlinuz-trusty
  560. name: dCore Trusty
  561. - arch: x86
  562. code_name: dcoretrustyplus
  563. initrd: /dCore/x86/release/dCore-trusty/dCorePlus-trusty.gz
  564. kernel: /dCore/x86/release/dCore-trusty/vmlinuz-trusty
  565. name: dCore Trusty Plus
  566. - arch: x86
  567. code_name: dcorewheezy
  568. initrd: /dCore/x86/release/dCore-wheezy/dCore-wheezy.gz
  569. kernel: /dCore/x86/release/dCore-wheezy/vmlinuz-wheezy
  570. name: dCore Wheezy
  571. - arch: x86
  572. code_name: dcorewheezyplus
  573. initrd: /dCore/x86/release/dCore-wheezy/dCorePlus-wheezy.gz
  574. kernel: /dCore/x86/release/dCore-wheezy/vmlinuz-wheezy
  575. name: dCore Wheezy Plus
  576. - arch: x86
  577. code_name: dcorexenial
  578. initrd: /dCore/x86/release/dCore-xenial/dCore-xenial.gz
  579. kernel: /dCore/x86/release/dCore-xenial/vmlinuz-xenial
  580. name: dCore Xenial
  581. - arch: x86
  582. code_name: dcorexenialplus
  583. initrd: /dCore/x86/release/dCore-xenial/dCorePlus-xenial.gz
  584. kernel: /dCore/x86/release/dCore-xenial/vmlinuz-xenial
  585. name: dCore Xenial Plus
  586. - arch: x86_64
  587. code_name: dcore64bionic
  588. initrd: /dCore/x86_64/release/dCore-bionic64/dCore-bionic64.gz
  589. kernel: /dCore/x86_64/release/dCore-bionic64/vmlinuz-bionic64
  590. name: dCore64 Bionic
  591. - arch: x86_64
  592. code_name: dcore64bionicplus
  593. initrd: /dCore/x86_64/release/dCore-bionic64/dCorePlus-bionic64.gz
  594. kernel: /dCore/x86_64/release/dCore-bionic64/vmlinuz-bionic64
  595. name: dCore64 Bionic Plus
  596. - arch: x86_64
  597. code_name: dcore64buster
  598. initrd: /dCore/x86_64/release/dCore-buster64/dCore-buster64.gz
  599. kernel: /dCore/x86_64/release/dCore-buster64/vmlinuz-buster64
  600. name: dCore64 Buster
  601. - arch: x86_64
  602. code_name: dcore64busterplus
  603. initrd: /dCore/x86_64/release/dCore-buster64/dCorePlus-buster64.gz
  604. kernel: /dCore/x86_64/release/dCore-buster64/vmlinuz-buster64
  605. name: dCore64 Buster Plus
  606. - arch: x86_64
  607. code_name: dcore64stretch
  608. initrd: /dCore/x86_64/release/dCore-stretch64/dCore-stretch64.gz
  609. kernel: /dCore/x86_64/release/dCore-stretch64/vmlinuz-stretch64
  610. name: dCore64 Stretch
  611. - arch: x86_64
  612. code_name: dcore64stretchplus
  613. initrd: /dCore/x86_64/release/dCore-stretch64/dCorePlus-stretch64.gz
  614. kernel: /dCore/x86_64/release/dCore-stretch64/vmlinuz-stretch64
  615. name: dCore Stretch Plus
  616. ubuntu:
  617. archive_mirror: http://old-releases.ubuntu.com
  618. base_dir: ubuntu
  619. enabled: true
  620. menu: linux
  621. mirror: http://archive.ubuntu.com
  622. name: Ubuntu
  623. versions:
  624. - code_name: lunar
  625. name: 23.04 Lunar Lobster
  626. - code_name: kinetic
  627. name: 22.10 Kinetic Kudu
  628. - code_name: jammy
  629. name: 22.04 LTS Jammy Jellyfish
  630. - code_name: focal
  631. name: 20.04 LTS Focal Fossa (Subiquity)
  632. - code_name: focal-legacy
  633. name: 20.04 LTS Focal Fossa (Legacy)
  634. - code_name: bionic
  635. name: 18.04 LTS Bionic Beaver
  636. - code_name: xenial
  637. name: 16.04 LTS Xenial Xerus
  638. - code_name: trusty
  639. name: 14.04 LTS Trusty Tahr
  640. vmware:
  641. enabled: true
  642. menu: linux
  643. name: VMware ESXi
  644. vyos:
  645. enabled: true
  646. menu: linux
  647. name: VyOS
  648. versions:
  649. - code_name: rolling
  650. name: 1.4 rolling
  651. zeninstall:
  652. enabled: true
  653. menu: linux
  654. name: Zen Installer Arch
  655. versions:
  656. - code_name: current
  657. name: current
  658. sigs_dir: '{{ netbootxyz_root }}/sigs'
  659. sigs_enabled: false
  660. sigs_location: http://${boot_domain}/sigs/
  661. sigs_menu: false
  662. site_name: netboot.xyz
  663. time_server: 0.pool.ntp.org
  664. utilitiesarm:
  665. memtest86:
  666. enabled: false
  667. kernel: ${live_endpoint}{{ endpoints.memtest86.path }}memtest86-usb.img
  668. name: Memtest86 Free - {{ endpoints.memtest86.version }}
  669. type: sanboot
  670. utilitiesefi:
  671. 4mlinux:
  672. enabled: true
  673. name: 4MLinux
  674. type: ipxemenu
  675. bootrepair:
  676. enabled: true
  677. initrd: ${live_endpoint}{{ endpoints.bootrepair.path }}initrd
  678. kernel: ${live_endpoint}{{ endpoints.bootrepair.path }}vmlinuz ip=dhcp boot=casper
  679. netboot=http fetch=${live_endpoint}{{ endpoints.bootrepair.path }}filesystem.squashfs
  680. {{ kernel_params }}
  681. name: Boot Repair CD
  682. type: direct
  683. caine:
  684. enabled: true
  685. initrd: ${live_endpoint}{{ endpoints.caine.path }}initrd
  686. kernel: ${live_endpoint}{{ endpoints.caine.path }}vmlinuz ip=dhcp boot=casper
  687. netboot=http fetch=${live_endpoint}{{ endpoints.caine.path }}filesystem.squashfs
  688. {{ kernel_params }}
  689. name: CAINE
  690. type: direct
  691. clonezilla:
  692. enabled: true
  693. name: Clonezilla
  694. type: ipxemenu
  695. gparted:
  696. enabled: true
  697. name: GParted
  698. type: ipxemenu
  699. grml:
  700. enabled: true
  701. name: Grml
  702. type: ipxemenu
  703. kaspersky:
  704. enabled: true
  705. name: Kaspersky Rescue Disk
  706. type: ipxemenu
  707. memtest86:
  708. enabled: false
  709. kernel: ${live_endpoint}{{ endpoints.memtest86.path }}memtest86-usb.img
  710. name: Memtest86 Free - {{ endpoints.memtest86.version }}
  711. type: sanboot
  712. redorescue:
  713. enabled: true
  714. initrd: ${live_endpoint}{{ endpoints.redorescue.path }}initrd
  715. kernel: ${live_endpoint}{{ endpoints.redorescue.path }}vmlinuz boot=live noprompt
  716. nocomponents setkmap=us fetch=${live_endpoint}{{ endpoints.redorescue.path }}filesystem.squashfs
  717. {{ kernel_params }}
  718. name: RedoRescue
  719. type: direct
  720. rescatux:
  721. enabled: true
  722. initrd: ${live_endpoint}{{ endpoints.rescatux.path }}initrd
  723. kernel: ${live_endpoint}{{ endpoints.rescatux.path }}vmlinuz boot=live fetch=${live_endpoint}{{
  724. endpoints.rescatux.path }}filesystem.squashfs selinux=1 security=selinux enforcing=0
  725. {{ kernel_params }}
  726. name: Rescatux
  727. type: direct
  728. rescuezilla:
  729. enabled: true
  730. name: Rescuezilla
  731. type: ipxemenu
  732. shredos:
  733. enabled: true
  734. name: ShredOS
  735. type: ipxemenu
  736. systemrescue:
  737. enabled: true
  738. name: System Rescue CD
  739. type: ipxemenu
  740. utilitiespcbios32:
  741. clonezilla:
  742. enabled: true
  743. name: Clonezilla
  744. type: ipxemenu
  745. memtest:
  746. enabled: true
  747. name: Memtest
  748. type: memtest
  749. util_path: https://boot.netboot.xyz/utils/memtest86-5.01.0
  750. version: 5.01.0
  751. shredos:
  752. enabled: true
  753. name: ShredOS
  754. type: ipxemenu
  755. systemrescue:
  756. enabled: true
  757. name: System Rescue CD
  758. type: ipxemenu
  759. utilitiespcbios64:
  760. 4mlinux:
  761. enabled: true
  762. name: 4MLinux
  763. type: ipxemenu
  764. avg:
  765. enabled: true
  766. name: AVG Rescue CD
  767. type: memdisk
  768. util_path: http://download.avg.com/filedir/inst/avg_arl_cdi_all_120_160420a12074.iso
  769. version: 160420a12074
  770. bootrepair:
  771. enabled: true
  772. initrd: ${live_endpoint}{{ endpoints.bootrepair.path }}initrd
  773. kernel: ${live_endpoint}{{ endpoints.bootrepair.path }}vmlinuz ip=dhcp boot=casper
  774. netboot=http fetch=${live_endpoint}{{ endpoints.bootrepair.path }}filesystem.squashfs
  775. {{ kernel_params }}
  776. name: Boot Repair CD
  777. type: direct
  778. breakin:
  779. enabled: true
  780. initrd: ${live_endpoint}{{ endpoints.breakin.path }}initrd
  781. kernel: ${live_endpoint}{{ endpoints.breakin.path }}vmlinuz sshpasswd=breakin
  782. startup=breakin {{ kernel_params }}
  783. name: Breakin
  784. type: direct
  785. caine:
  786. enabled: true
  787. initrd: ${live_endpoint}{{ endpoints.caine.path }}initrd
  788. kernel: ${live_endpoint}{{ endpoints.caine.path }}vmlinuz ip=dhcp boot=casper
  789. netboot=http fetch=${live_endpoint}{{ endpoints.caine.path }}filesystem.squashfs
  790. {{ kernel_params }}
  791. name: CAINE
  792. type: direct
  793. clonezilla:
  794. enabled: true
  795. name: Clonezilla
  796. type: ipxemenu
  797. dban:
  798. enabled: true
  799. name: DBAN
  800. type: ipxemenu
  801. gparted:
  802. enabled: true
  803. name: GParted
  804. type: ipxemenu
  805. grml:
  806. enabled: true
  807. name: Grml
  808. type: ipxemenu
  809. kaspersky:
  810. enabled: true
  811. name: Kaspersky Rescue Disk
  812. type: ipxemenu
  813. memtest:
  814. enabled: true
  815. name: Memtest
  816. type: memtest
  817. util_path: https://boot.netboot.xyz/utils/memtest86-5.01.0
  818. version: 5.01.0
  819. redorescue:
  820. enabled: true
  821. initrd: ${live_endpoint}{{ endpoints.redorescue.path }}initrd
  822. kernel: ${live_endpoint}{{ endpoints.redorescue.path }}vmlinuz boot=live noprompt
  823. nocomponents setkmap=us fetch=${live_endpoint}{{ endpoints.redorescue.path }}filesystem.squashfs
  824. {{ kernel_params }}
  825. name: RedoRescue
  826. type: direct
  827. rescatux:
  828. enabled: true
  829. initrd: ${live_endpoint}{{ endpoints.rescatux.path }}initrd
  830. kernel: ${live_endpoint}{{ endpoints.rescatux.path }}vmlinuz boot=live fetch=${live_endpoint}{{
  831. endpoints.rescatux.path }}filesystem.squashfs selinux=1 security=selinux enforcing=0
  832. {{ kernel_params }}
  833. name: Rescatux
  834. type: direct
  835. rescuezilla:
  836. enabled: true
  837. name: Rescuezilla
  838. type: ipxemenu
  839. shredos:
  840. enabled: true
  841. name: ShredOS
  842. type: ipxemenu
  843. supergrub:
  844. enabled: true
  845. name: SuperGRUB
  846. type: memdisk
  847. util_path: http://master.dl.sourceforge.net/project/supergrub2/2.04s1/super_grub2_disk_2.04s1/super_grub2_disk_hybrid_2.04s1.iso
  848. version: 2.04s1
  849. systemrescue:
  850. enabled: true
  851. name: System Rescue CD
  852. type: ipxemenu
  853. ubcd:
  854. enabled: true
  855. name: Ultimate Boot CD (UBCD)
  856. type: memdisk
  857. util_path: https://mirror.sysadminguide.net/ubcd/ubcd539.iso
  858. version: '539'
  859. wimboot_location: http://${boot_domain}/wimboot
  860. wimboot_upstream_url: https://github.com/ipxe/wimboot/releases/latest/download/wimboot