main.yml 20 KB

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