mkinitrd unification across distributions
 help / color / mirror / Atom feed
* [Patch] dracut: write-ifcfg.sh: load net-lib.sh
@ 2014-05-07 14:18 Marc Milgram
       [not found] ` <20140507141827.27588.20483.sendpatchset-cl2/UFW8KLzV1gMhexUvwR/sF2h8X+2i0E9HWUfgJXw@public.gmane.org>
  0 siblings, 1 reply; 2+ messages in thread
From: Marc Milgram @ 2014-05-07 14:18 UTC (permalink / raw)
  To: initramfs-u79uwXL29TY76Z2rM5mHXA; +Cc: Marc Milgram

When kdump boots the second kernel, it complains:

dracut-pre-pivot[429]: //lib/dracut/hooks/pre-pivot/85-write-ifcfg.sh: line 168: is_persistent_ethernet_name: command not found 

is_persistent_ethernet_name is defined in net-lib.sh, but write-ifcfg.sh
doesn't load that library.  Solution is to load the library.

Tested that this fix eliminates the error message.

Signed-off-by: Marc Milgram <mmilgram-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
---
diff --git a/modules.d/45ifcfg/write-ifcfg.sh b/modules.d/45ifcfg/write-ifcfg.sh
index 5de2e90..e30749b 100755
--- a/modules.d/45ifcfg/write-ifcfg.sh
+++ b/modules.d/45ifcfg/write-ifcfg.sh
@@ -5,6 +5,8 @@
 # NFS root might have reached here before /tmp/net.ifaces was written
 udevadm settle --timeout=30
 
+command -v is_persistent_ethernet_name || . /lib/net-lib.sh
+
 if [ -e /tmp/bridge.info ]; then
     . /tmp/bridge.info
 fi

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-05-20  9:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-07 14:18 [Patch] dracut: write-ifcfg.sh: load net-lib.sh Marc Milgram
     [not found] ` <20140507141827.27588.20483.sendpatchset-cl2/UFW8KLzV1gMhexUvwR/sF2h8X+2i0E9HWUfgJXw@public.gmane.org>
2014-05-20  9:36   ` Harald Hoyer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox