9f5608fbad
The nginx_port variable is insufficiently generic enough in the event a user really wanted to run Apache, or some other web server. As such, this commit renames the setting to file_url_port to prevent any confusion meanwhile supporting the ability to continue to use an override setting should the variable nginx_port be defined in an externally generated variable setting file. Change-Id: Ida88cdec6ba162920df09dbdd335a9ad7868c842
11 lines
592 B
Django/Jinja
11 lines
592 B
Django/Jinja
#!ipxe
|
|
|
|
dhcp
|
|
|
|
goto introspect
|
|
|
|
:introspect
|
|
kernel http://{{ hostvars[inventory_hostname]['ansible_' + network_interface]['ipv4']['address'] }}:{{ file_url_port }}/ipa.vmlinuz ipa-inspection-callback-url=http://{{ hostvars[inventory_hostname]['ansible_' + network_interface]['ipv4']['address'] }}:5050/v1/continue systemd.journald.forward_to_console=yes ip=${ip}:${next-server}:${gateway}:${netmask} BOOTIF=${mac} nofb nomodeset vga=normal console=ttyS0
|
|
initrd http://{{ hostvars[inventory_hostname]['ansible_' + network_interface]['ipv4']['address'] }}:{{ file_url_port }}/ipa.initramfs
|
|
boot
|