2023-10-26 21:31:46 +00:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: IPXE dnsmasq
|
|
|
|
template:
|
|
|
|
src: dnsmasq/pxe
|
|
|
|
dest: /etc/dnsmasq.d/pxe
|
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: "0644"
|
|
|
|
become: true
|
|
|
|
|
|
|
|
- name: IPXE bios firmware
|
|
|
|
ansible.builtin.file:
|
|
|
|
src: /usr/lib/ipxe/undionly.kpxe
|
|
|
|
dest: /srv/tftp/undionly.kpxe
|
|
|
|
state: link
|
|
|
|
become: true
|
|
|
|
|
|
|
|
- name: IPXE efi firmware
|
|
|
|
ansible.builtin.file:
|
|
|
|
src: /usr/lib/ipxe/ipxe.efi
|
|
|
|
dest: /srv/tftp/ipxe.efi
|
|
|
|
state: link
|
|
|
|
become: true
|
|
|
|
|
|
|
|
- name: IPXE memdisk
|
|
|
|
ansible.builtin.file:
|
|
|
|
src: /usr/lib/syslinux/memdisk
|
|
|
|
dest: /srv/pxe/memdisk
|
|
|
|
state: link
|
|
|
|
become: true
|
2023-10-27 10:05:20 +00:00
|
|
|
|
|
|
|
- name: IPXE boot menu
|
|
|
|
copy:
|
2023-10-27 10:07:40 +00:00
|
|
|
src: ../../../boot.ipxe
|
|
|
|
dest: /srv/pxe/boot.ipxe
|
2023-10-27 10:05:20 +00:00
|
|
|
owner: root
|
|
|
|
group: root
|
|
|
|
mode: "0644"
|
|
|
|
become: true
|