Browse Source

netroot: Use root.info instead of netroot.info

Having two files which are used more or less at the same time isn't
that easy to handle and read. Instead, move the contents of netroot.info
to root.info and only use root.info. This is cleaner and makes debugging
easier.
master
Philippe Seewer 16 years ago
parent
commit
2734a87537
  1. 4
      modules.d/40network/dhcp-fallback.sh
  2. 4
      modules.d/40network/ifup
  3. 6
      modules.d/40network/netroot
  4. 1
      modules.d/99base/init

4
modules.d/40network/dhcp-fallback.sh

@ -14,7 +14,3 @@ fi @@ -14,7 +14,3 @@ fi
if [ "$netroot" = "$root" ]; then
unset root
fi

if [ "${netroot+set}" = "set" ]; then
eval "echo netroot='$netroot'" > /tmp/netroot.info
fi

4
modules.d/40network/ifup

@ -15,7 +15,9 @@ netif=$1 @@ -15,7 +15,9 @@ netif=$1
# bail immediately if the interface is already up
# or we don't need the network
[ -f "/tmp/net.$netif.up" ] && exit 0
[ ! -f /tmp/netroot.info ] && exit 0
[ -f "/tmp/root.info" ] || exit 0
. /tmp/root.info
[ -z "$netroot" ] && exit 0

# loopback is always handled the same way
[ "$netif" = "lo" ] && {

6
modules.d/40network/netroot

@ -29,15 +29,17 @@ netif=$1 @@ -29,15 +29,17 @@ netif=$1
# then no point in looking further
#
[ -e /tmp/netroot.done ] && exit 0
[ -s /tmp/netroot.info -a -s /tmp/root.info ] || exit 0
[ -f /tmp/root.info ] || exit 1

# Pick up our config from the command line; we may already know the
# handler to run
#
. /tmp/root.info
. /tmp/netroot.info
[ -e /tmp/dhclient.$netif.dhcpopts ] && . /tmp/dhclient.$netif.dhcpopts

# Don't continue if netroot isn't needed
[ -z "$netroot" ] && exit 0

# Now, let the installed network root handlers figure this out
#
source_all netroot

1
modules.d/99base/init

@ -59,6 +59,7 @@ fi @@ -59,6 +59,7 @@ fi
echo "root='$root'"
echo "rflags='$rflags'"
echo "fstype='$fstype'"
echo "netroot='$netroot'"
echo "NEWROOT='$NEWROOT'"
} > /tmp/root.info


Loading…
Cancel
Save