network/parse-ip-opts.sh: remove check for netroot
authorHarald Hoyer <harald@redhat.com>
Thu, 19 Apr 2012 14:41:04 +0000 (16:41 +0200)
committerHarald Hoyer <harald@redhat.com>
Thu, 19 Apr 2012 14:41:04 +0000 (16:41 +0200)
with anaconda and all other kind of stuff, we might want network, even
for root not on the network

modules.d/40network/parse-ip-opts.sh

index 97702a2..5637a9a 100755 (executable)
 command -v getarg >/dev/null          || . /lib/dracut-lib.sh
 command -v ibft_to_cmdline >/dev/null || . /lib/net-lib.sh
 
-# Check if ip= lines should be used
-if getarg ip= >/dev/null ; then
-    if [ -z "$netroot" ] ; then
-        echo "Warning: No netboot configured, ignoring ip= lines"
-        return;
-    fi
-fi
-
 # Don't mix BOOTIF=macaddr from pxelinux and ip= lines
 getarg ip= >/dev/null && getarg BOOTIF= >/dev/null && \
     die "Mixing BOOTIF and ip= lines is dangerous"