All of lore.kernel.org
 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

* Re: [Patch] dracut: write-ifcfg.sh: load net-lib.sh
       [not found] ` <20140507141827.27588.20483.sendpatchset-cl2/UFW8KLzV1gMhexUvwR/sF2h8X+2i0E9HWUfgJXw@public.gmane.org>
@ 2014-05-20  9:36   ` Harald Hoyer
  0 siblings, 0 replies; 2+ messages in thread
From: Harald Hoyer @ 2014-05-20  9:36 UTC (permalink / raw)
  To: Marc Milgram, initramfs-u79uwXL29TY76Z2rM5mHXA

On 07.05.2014 16:18, Marc Milgram wrote:
> 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


Thanks!
http://git.kernel.org/cgit/boot/dracut/dracut.git/commit/?id=8fa1afb65cef30d56ce2e141b0b594cf780120a1

^ permalink raw reply	[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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.