Fix some old hardcoded /httpboot references
Update a couple references of /httpboot to use the {{ http_boot_folder }} variable needed to use a custom httpboot directory. Change-Id: I38ea065dc858c2e1304df24656af41c1945dfe94
This commit is contained in:
parent
73f8b41fb0
commit
580ec8969b
@ -43,8 +43,8 @@
|
||||
- name: "Place boot.ipxe helper script /etc/ironic"
|
||||
copy: src=boot.ipxe dest=/etc/ironic/boot.ipxe owner=ironic group=ironic mode=0744
|
||||
|
||||
- name: "Pre-stage boot.ipxe into /httpboot/"
|
||||
copy: src=boot.ipxe dest=/httpboot/boot.ipxe owner=ironic group=ironic mode=0744
|
||||
- name: "Pre-stage boot.ipxe into {{ http_boot_folder }}/"
|
||||
copy: src=boot.ipxe dest={{ http_boot_folder }}/boot.ipxe owner=ironic group=ironic mode=0744
|
||||
|
||||
- name: "Place tftp config file"
|
||||
copy: src=xinetd.tftp dest=/etc/xinetd.d/tftp
|
||||
@ -57,8 +57,8 @@
|
||||
copy: src={{ ipxe_dir }}/undionly.kpxe dest=/tftpboot/ remote_src=true
|
||||
|
||||
# NOTE(TheJulia): Copy full iPXE chain loader images in case they are required.
|
||||
- name: "Copy full iPXE image into /httpboot"
|
||||
copy: src={{ ipxe_dir }}/{{ ipxe_full_binary }} dest=/httpboot/ remote_src=true
|
||||
- name: "Copy full iPXE image into {{ http_boot_folder }}/"
|
||||
copy: src={{ ipxe_dir }}/{{ ipxe_full_binary }} dest={{ http_boot_folder }}/ remote_src=true
|
||||
|
||||
- name: "Copy full iPXE image into /tftpboot"
|
||||
copy: src={{ ipxe_dir }}/{{ ipxe_full_binary }} dest=/tftpboot/ remote_src=true
|
||||
|
Loading…
Reference in New Issue
Block a user