From: Thierry Parmentelat Date: Wed, 17 Jun 2015 08:16:46 +0000 (+0200) Subject: gather more data when node is stuck without network X-Git-Tag: bootcd-5.3-1~8 X-Git-Url: http://git.onelab.eu/?p=bootcd.git;a=commitdiff_plain;h=b6a84659f3d6fe24157333ab5e336125c9ae2373;hp=6271ed5db59747d1453c98d0f1aa9c509cbf233c gather more data when node is stuck without network --- diff --git a/initscripts/pl_netinit b/initscripts/pl_netinit index fd97f37..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,9 +321,11 @@ while true; do break fi echo $(date "+%H:%M:%S") " pl_netinit: waiting for device $ETH_DEVICE - ${COUNTER}s/${ALLOW}s" - echo ========== ifconfig beg + set -x /sbin/ifconfig - echo ========== ifconfig end + 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