X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=initscripts%2Fpl_netinit;h=a134d88cdea4161ee196011da11ca74d9635ac55;hb=8b8fd00c0fb49747e4fca7cbf69a3590cb6324a0;hp=34375f52a9fc7a5560cfc8b2313e468ea6d043d6;hpb=036189b13fd531b7e8524741eacab16d8e08e4fb;p=bootcd.git diff --git a/initscripts/pl_netinit b/initscripts/pl_netinit index 34375f5..a134d88 100755 --- a/initscripts/pl_netinit +++ b/initscripts/pl_netinit @@ -313,7 +313,7 @@ fi # on fedora 21 nodes we see this running in a context where eth0 is not known to the system # could be related to a dependency that we poorly describe to systemd # I am increasing this timeout to 2 minutes in order to check that conjecture -ALLOW=120 +ALLOW=60 COUNTER=0 while true; do if /sbin/ifconfig $ETH_DEVICE >& /dev/null; then @@ -321,6 +321,11 @@ while true; do break fi echo $(date "+%H:%M:%S") " pl_netinit: waiting for device $ETH_DEVICE - ${COUNTER}s/${ALLOW}s" + set -x + /sbin/ifconfig + journalctl -b | egrep 'eth|bnx|udev' + systemctl list-unit-files | grep -i network + set +x COUNTER=$(($COUNTER+1)) [ $COUNTER -ge $ALLOW ] && net_init_failed sleep 1