main.yml 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704
  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: -hybrid.iso
  18. type: ISO
  19. - desc: Used for creation of USB Keys
  20. ipxe_bin: ipxe.usb
  21. output_bin: -hybrid.usb
  22. type: USB
  23. legacy:
  24. - desc: Used for CD/DVD, Virtual CDs, DRAC/iLO, VMware, Virtual Box
  25. ipxe_bin: ipxe.iso
  26. output_bin: .iso
  27. type: ISO
  28. - desc: Used for creation of USB Keys
  29. ipxe_bin: ipxe.usb
  30. output_bin: .usb
  31. type: USB
  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: DHCP boot image file, uses built-in iPXE NIC drivers
  41. ipxe_bin: ipxe.kpxe
  42. output_bin: .kpxe
  43. type: DHCP
  44. - desc: DHCP boot image file, use if you have NIC issues
  45. ipxe_bin: undionly.kpxe
  46. output_bin: -undionly.kpxe
  47. type: DHCP-undionly
  48. rpi:
  49. - desc: Raspberry Pi 4 - USB/SD Card Image
  50. ipxe_bin: rpi4-sdcard.img
  51. output_bin: -rpi4-sdcard.img
  52. type: USB/SD Card
  53. - desc: Raspberry Pi 4 - EFI Image
  54. ipxe_bin: snp.efi
  55. output_bin: -rpi4-snp.efi
  56. type: DHCP-snp
  57. uefi:
  58. - desc: EFI BIOS, works in Virtual Box EFI mode
  59. ipxe_bin: ipxe-efi.eiso
  60. output_bin: -efi.iso
  61. type: ISO
  62. - desc: Used for creation of USB Keys
  63. ipxe_bin: ipxe-efi.usb
  64. output_bin: -efi.usb
  65. type: USB
  66. - desc: DHCP EFI boot image file, uses built-in iPXE NIC drivers
  67. ipxe_bin: ipxe.efi
  68. output_bin: .efi
  69. type: DHCP
  70. - desc: EFI w/ Simple Network Protocol, attempts to boot all net devices
  71. ipxe_bin: snp.efi
  72. output_bin: -snp.efi
  73. type: DHCP-snp
  74. - desc: EFI w/ Simple Network Protocol, only boots from device chained from
  75. ipxe_bin: snponly.efi
  76. output_bin: -snponly.efi
  77. type: DHCP-snponly
  78. cert_dir: /etc/netbootxyz/certs
  79. cert_file_filename: ca-netboot-xyz.crt
  80. checksums_filename: '{{ site_name }}-sha256-checksums.txt'
  81. codesign_cert_filename: codesign.crt
  82. codesign_key_filename: codesign.key
  83. custom_generate_menus: false
  84. custom_github_menus: true
  85. custom_templates_dir: '{{ netbootxyz_conf_dir }}/custom'
  86. custom_url_menus: true
  87. generate_checksums: true
  88. generate_disks: true
  89. generate_disks_arm: false
  90. generate_disks_efi: true
  91. generate_disks_hybrid: false
  92. generate_disks_legacy: true
  93. generate_disks_rpi: false
  94. generate_menus: true
  95. generate_signatures: false
  96. generate_version_file: true
  97. ipxe_branch: master
  98. ipxe_ca_filename: ca-ipxe-org.crt
  99. ipxe_ca_url: http://ca.ipxe.org/ca.crt
  100. ipxe_repo: https://github.com/ipxe/ipxe
  101. ipxe_source_dir: /usr/src/ipxe
  102. live_endpoint: https://github.com/netbootxyz
  103. memdisk_location: http://${boot_domain}/memdisk
  104. netbootxyz_conf_dir: /etc/netbootxyz
  105. netbootxyz_root: /var/www/html
  106. pciids_url: https://raw.githubusercontent.com/netbootxyz/pciids/master/pciids.ipxe
  107. pipxe_branch: master
  108. pipxe_repo: https://github.com/netbootxyz/pipxe
  109. pipxe_source_dir: /usr/src/pipxe
  110. releases:
  111. almalinux:
  112. base_dir: almalinux
  113. enabled: true
  114. menu: linux
  115. mirror: https://repo.almalinux.org
  116. name: AlmaLinux
  117. versions:
  118. - code_name: 8
  119. name: 8
  120. alpinelinux:
  121. base_dir: alpine
  122. enabled: true
  123. menu: linux
  124. mirror: http://dl-cdn.alpinelinux.org
  125. name: Alpine Linux
  126. versions:
  127. - code_name: v3.13
  128. name: '3.13'
  129. - code_name: edge
  130. name: Edge (development)
  131. anarchy:
  132. enabled: true
  133. menu: linux
  134. name: Anarchy Linux
  135. versions:
  136. - code_name: current
  137. name: current
  138. archlinux:
  139. base_dir: archlinux
  140. enabled: true
  141. menu: linux
  142. mirror: mirrors.evowise.com
  143. name: Arch Linux
  144. versions:
  145. - code_name: 2021.03.01
  146. name: 2021.03.01
  147. blackarch:
  148. enabled: true
  149. menu: linux
  150. name: BlackArch
  151. versions:
  152. - code_name: current
  153. name: current
  154. centos:
  155. base_dir: centos
  156. enabled: true
  157. menu: linux
  158. mirror: http://mirror.centos.org
  159. name: CentOS
  160. versions:
  161. - code_name: 8.3.2011
  162. name: '8.3'
  163. - code_name: 8
  164. name: 8.x Latest
  165. - code_name: 8-stream
  166. name: 8.0 Stream
  167. - code_name: 7
  168. name: 7.x Latest
  169. coreos:
  170. base_dir: prod/streams
  171. enabled: true
  172. menu: linux
  173. mirror: https://builds.coreos.fedoraproject.org
  174. name: Fedora CoreOS
  175. versions:
  176. - code_name: 33.20210217.3.0
  177. name: stable
  178. debian:
  179. archive_mirror: http://archive.debian.org
  180. base_dir: debian
  181. enabled: true
  182. menu: linux
  183. mirror: http://deb.debian.org
  184. name: Debian
  185. versions:
  186. stable:
  187. - code_name: buster
  188. name: 10.0 (buster)
  189. - code_name: stretch
  190. name: 9.0 (stretch)
  191. testing:
  192. - code_name: bullseye
  193. name: bullseye (testing)
  194. - code_name: sid
  195. name: sid (unstable)
  196. devuan:
  197. base_dir: devuan
  198. enabled: true
  199. menu: linux
  200. mirror: http://deb.devuan.org
  201. name: Devuan
  202. versions:
  203. stable:
  204. - code_name: beowulf
  205. name: 3.0.0 Beowulf (stable)
  206. - code_name: ascii
  207. name: 2.1 ASCII (oldstable)
  208. - code_name: jessie
  209. name: 1.0 Jessie (oldoldstable)
  210. testing:
  211. - code_name: chimaera
  212. name: Chimaera (testing)
  213. fedora:
  214. base_dir: pub/fedora/linux
  215. enabled: true
  216. menu: linux
  217. mirror: http://download.fedoraproject.org
  218. name: Fedora
  219. versions:
  220. - code_name: 33
  221. name: 33
  222. - code_name: 32
  223. name: 32
  224. - code_name: 31
  225. name: 31
  226. flatcar:
  227. enabled: true
  228. menu: linux
  229. mirror: ''
  230. name: Container Linux by Flatcar
  231. versions:
  232. - code_name: stable
  233. name: Stable Channel
  234. - code_name: beta
  235. name: Beta Channel
  236. - code_name: alpha
  237. name: Alpha Channel
  238. freebsd:
  239. enabled: true
  240. menu: bsd
  241. name: FreeBSD
  242. freedos:
  243. base_dir: download/download
  244. enabled: true
  245. menu: dos
  246. mirror: http://www.freedos.org
  247. name: FreeDOS
  248. versions:
  249. - code_name: FD12FULL
  250. name: 1.2 Full Installer
  251. - code_name: FD12LITE
  252. name: 1.2 Lite Installer
  253. gentoo:
  254. enabled: true
  255. menu: linux
  256. name: Gentoo
  257. ipfire:
  258. base_dir: releases/ipfire-2.x
  259. enabled: true
  260. menu: linux
  261. mirror: https://downloads.ipfire.org
  262. name: IPFire
  263. versions:
  264. - code_name: 2.25-core154
  265. name: 2.25 Core154
  266. k3os:
  267. enabled: true
  268. menu: linux
  269. mirror: https://github.com/rancher/k3os/releases
  270. name: k3OS
  271. kali:
  272. base_dir: kali
  273. enabled: true
  274. menu: linux
  275. mirror: http://http.kali.org
  276. name: Kali Linux
  277. versions:
  278. - code_name: rolling
  279. name: Rolling Edition (2020.1)
  280. mageia:
  281. base_dir: mageia
  282. enabled: true
  283. menu: linux
  284. mirror: http://mirrors.kernel.org
  285. name: Mageia
  286. versions:
  287. - code_name: '7.1'
  288. name: '7.1'
  289. - code_name: cauldron
  290. name: cauldron
  291. nixos:
  292. enabled: true
  293. menu: linux
  294. name: NixOS
  295. openbsd:
  296. base_dir: pub/OpenBSD
  297. enabled: true
  298. menu: bsd
  299. mirror: http://ftp.openbsd.org
  300. name: OpenBSD
  301. versions:
  302. - code_name: '6.8'
  303. image_ver: '68'
  304. name: '6.8'
  305. - code_name: '6.7'
  306. image_ver: '67'
  307. name: '6.7'
  308. - code_name: '6.6'
  309. image_ver: '66'
  310. name: '6.6'
  311. - code_name: '6.5'
  312. image_ver: '65'
  313. name: '6.5'
  314. - code_name: '6.4'
  315. image_ver: '64'
  316. name: '6.4'
  317. - code_name: snapshots
  318. image_ver: '68'
  319. name: 6.8 Latest Snapshot
  320. opensuse:
  321. base_dir: distribution/leap
  322. enabled: true
  323. menu: linux
  324. mirror: http://download.opensuse.org
  325. name: OpenSUSE
  326. versions:
  327. - code_name: '15.2'
  328. name: openSUSE Leap 15.2
  329. - code_name: '15.1'
  330. name: openSUSE Leap 15.1
  331. - code_name: '15.0'
  332. name: openSUSE Leap 15.0
  333. - code_name: '42.3'
  334. name: openSUSE Leap 42.3
  335. - code_name: tumbleweed
  336. name: openSUSE tumbleweed
  337. oracle:
  338. enabled: true
  339. menu: linux
  340. mirror: https://yum.oracle.com
  341. name: Oracle Linux
  342. paths:
  343. 7: /repo/OracleLinux/OL7/latest/x86_64
  344. 8: /repo/OracleLinux/OL8/baseos/latest/x86_64
  345. rancheros:
  346. base_dir: os/latest
  347. enabled: true
  348. menu: linux
  349. mirror: http://releases.rancher.com
  350. name: RancherOS
  351. versions:
  352. - code_name: latest
  353. name: Latest (20 MB)
  354. rhel:
  355. enabled: true
  356. menu: linux
  357. name: Red Hat Enterprise Linux
  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: 20210226T213821Z
  394. name: 20210226T213821Z
  395. - code_name: 20210225T124034Z
  396. name: 20210225T124034Z
  397. - code_name: 20210224T232633Z
  398. name: 20210224T232633Z
  399. - code_name: 20210211T163919Z
  400. name: 20210211T163919Z
  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: groovy
  536. name: 20.10 Groovy Gorilla
  537. - code_name: focal
  538. name: 20.04 LTS Focal Fossa (Subiquity)
  539. - code_name: focal-legacy
  540. name: 20.04 LTS Focal Fossa (Legacy)
  541. - code_name: bionic
  542. name: 18.04 LTS Bionic Beaver
  543. - code_name: xenial
  544. name: 16.04 LTS Xenial Xerus
  545. vyos:
  546. enabled: true
  547. menu: linux
  548. name: VyOS
  549. versions:
  550. - code_name: rolling
  551. name: 1.3 rolling
  552. zeninstall:
  553. enabled: true
  554. menu: linux
  555. name: Zen Installer Arch
  556. versions:
  557. - code_name: current
  558. name: current
  559. sigs_dir: '{{ netbootxyz_root }}/sigs'
  560. sigs_enabled: false
  561. sigs_location: http://${boot_domain}/sigs/
  562. sigs_menu: false
  563. site_name: netboot.xyz
  564. time_server: 0.pool.ntp.org
  565. utilitiesarm:
  566. placeholder:
  567. enabled: false
  568. name: placeholder
  569. type: direct
  570. utilitiesefi:
  571. 4mlinux:
  572. enabled: true
  573. name: 4MLinux
  574. type: ipxemenu
  575. bootrepair:
  576. enabled: true
  577. initrd: ${live_endpoint}{{ endpoints.bootrepair.path }}initrd
  578. kernel: ${live_endpoint}{{ endpoints.bootrepair.path }}vmlinuz ip=dhcp boot=casper
  579. netboot=http fetch=${live_endpoint}{{ endpoints.bootrepair.path }}filesystem.squashfs
  580. initrd=initrd
  581. name: Boot Repair CD
  582. type: direct
  583. caine:
  584. enabled: true
  585. initrd: ${live_endpoint}{{ endpoints.caine.path }}initrd
  586. kernel: ${live_endpoint}{{ endpoints.caine.path }}vmlinuz ip=dhcp boot=casper
  587. netboot=http fetch=${live_endpoint}{{ endpoints.caine.path }}filesystem.squashfs
  588. initrd=initrd
  589. name: CAINE
  590. type: direct
  591. clonezilla:
  592. enabled: true
  593. name: Clonezilla
  594. type: ipxemenu
  595. gparted:
  596. enabled: true
  597. name: GParted
  598. type: ipxemenu
  599. grml:
  600. enabled: true
  601. name: Grml
  602. type: ipxemenu
  603. kaspersky:
  604. enabled: true
  605. name: Kaspersky Rescue Disk
  606. type: ipxemenu
  607. rescatux:
  608. enabled: true
  609. initrd: ${live_endpoint}{{ endpoints.rescatux.path }}initrd
  610. kernel: ${live_endpoint}{{ endpoints.rescatux.path }}vmlinuz boot=live fetch=${live_endpoint}{{
  611. endpoints.rescatux.path }}filesystem.squashfs selinux=1 security=selinux enforcing=0
  612. initrd=initrd
  613. name: Rescatux
  614. type: direct
  615. systemrescue:
  616. enabled: true
  617. name: System Rescue CD
  618. type: ipxemenu
  619. utilitiespcbios:
  620. 4mlinux:
  621. enabled: true
  622. name: 4MLinux
  623. type: ipxemenu
  624. avg:
  625. enabled: true
  626. name: AVG Rescue CD
  627. type: memdisk
  628. util_path: http://download.avg.com/filedir/inst/avg_arl_cdi_all_120_160420a12074.iso
  629. version: 160420a12074
  630. bootrepair:
  631. enabled: true
  632. initrd: ${live_endpoint}{{ endpoints.bootrepair.path }}initrd
  633. kernel: ${live_endpoint}{{ endpoints.bootrepair.path }}vmlinuz ip=dhcp boot=casper
  634. netboot=http fetch=${live_endpoint}{{ endpoints.bootrepair.path }}filesystem.squashfs
  635. initrd=initrd
  636. name: Boot Repair CD
  637. type: direct
  638. breakin:
  639. enabled: true
  640. initrd: ${live_endpoint}{{ endpoints.breakin.path }}initrd
  641. kernel: ${live_endpoint}{{ endpoints.breakin.path }}vmlinuz sshpasswd=breakin
  642. startup=breakin initrd=initrd
  643. name: Breakin
  644. type: direct
  645. caine:
  646. enabled: true
  647. initrd: ${live_endpoint}{{ endpoints.caine.path }}initrd
  648. kernel: ${live_endpoint}{{ endpoints.caine.path }}vmlinuz ip=dhcp boot=casper
  649. netboot=http fetch=${live_endpoint}{{ endpoints.caine.path }}filesystem.squashfs
  650. initrd=initrd
  651. name: CAINE
  652. type: direct
  653. clonezilla:
  654. enabled: true
  655. name: Clonezilla
  656. type: ipxemenu
  657. dban:
  658. enabled: true
  659. name: DBAN
  660. type: ipxemenu
  661. gparted:
  662. enabled: true
  663. name: GParted
  664. type: ipxemenu
  665. grml:
  666. enabled: true
  667. name: Grml
  668. type: ipxemenu
  669. kaspersky:
  670. enabled: true
  671. name: Kaspersky Rescue Disk
  672. type: ipxemenu
  673. memtest:
  674. enabled: true
  675. name: Memtest
  676. type: memtest
  677. util_path: https://boot.netboot.xyz/utils/memtest86-5.01.0
  678. version: 5.01.0
  679. rescatux:
  680. enabled: true
  681. initrd: ${live_endpoint}{{ endpoints.rescatux.path }}initrd
  682. kernel: ${live_endpoint}{{ endpoints.rescatux.path }}vmlinuz boot=live fetch=${live_endpoint}{{
  683. endpoints.rescatux.path }}filesystem.squashfs selinux=1 security=selinux enforcing=0
  684. initrd=initrd
  685. name: Rescatux
  686. type: direct
  687. supergrub:
  688. enabled: true
  689. name: SuperGRUB
  690. type: memdisk
  691. util_path: http://master.dl.sourceforge.net/project/supergrub2/2.04s1/super_grub2_disk_2.04s1/super_grub2_disk_hybrid_2.04s1.iso
  692. version: 2.04s1
  693. systemrescue:
  694. enabled: true
  695. name: System Rescue CD
  696. type: ipxemenu
  697. ubcd:
  698. enabled: true
  699. name: Ultimate Boot CD (UBCD)
  700. type: memdisk
  701. util_path: http://mirror.sysadminguide.net/ubcd/ubcd538.iso
  702. version: '538'
  703. wimboot_location: http://${boot_domain}/wimboot
  704. wimboot_upstream_url: https://github.com/ipxe/wimboot/releases/latest/download/wimboot