1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
Description: Fix initial_grub_cfg.template
The default grub.cfg happen /srv/tftp, but tftp-hpa is, in Debian,
already doing a chroot in there.
Author: Thomas Goirand <zigo@debian.org>
Forwarded: no
Last-Update: 2024-09-16
--- ironic-21.1.0.orig/ironic/drivers/modules/initial_grub_cfg.template
+++ ironic-21.1.0/ironic/drivers/modules/initial_grub_cfg.template
@@ -1,4 +1,4 @@
echo Booting from $prefix
-source {{ tftp_root }}/$net_default_mac.conf
+source /$net_default_mac.conf
|