From 832216f9e8399f4668d84713a7d0e44672f74398 Mon Sep 17 00:00:00 2001
From: Thierry Parmentelat <thierry.parmentelat@inria.fr>
Date: Tue, 16 Jun 2015 10:10:20 +0200
Subject: [PATCH] cosmetic changes in the display when network interface cannot
 be brought up

---
 initscripts/pl_netinit | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/initscripts/pl_netinit b/initscripts/pl_netinit
index 071873c..b658fcd 100755
--- a/initscripts/pl_netinit
+++ b/initscripts/pl_netinit
@@ -60,7 +60,7 @@ DEFAULT_NET_CONF=0
 
 function net_init_failed() {
     echo
-    echo $(date "+%H:%M:%S") " pl_netinit: network initialization failed,"
+    echo $(date "+%H:%M:%S") " pl_netinit: network initialization failed with interface $ETH_DEVICE"
     echo
     echo For forensics
     echo
@@ -71,7 +71,11 @@ function net_init_failed() {
     echo ========== ifconfig beg
     /sbin/ifconfig
     echo ========== ifconfig end
+    echo ========== ip address show beg
+    ip address show
+    echo ========== ip address show end
     echo 
+    echo $(date "+%H:%M:%S") " pl_netinit: network initialization failed with interface $ETH_DEVICE"
     echo $(date "+%H:%M:%S") " pl_netinit: shutting down machine in two hours"
     /bin/sleep 2h
     /sbin/shutdown -h now
@@ -309,10 +313,10 @@ ALLOW=5
 COUNTER=0
 while true; do
     if /sbin/ifconfig $ETH_DEVICE >& /dev/null; then
-	echo "pl_netinit: device present $ETH_DEVICE, proceeding (${COUNTER}s/${ALLOW}s)"
+	echo $(date "+%H:%M:%S") " pl_netinit: device present $ETH_DEVICE, proceeding (${COUNTER}s/${ALLOW}s)"
 	break
     fi
-    echo $(date "+%H:%M:%S") " pl_netinit: waiting for device $ETH_DEVICE,${COUNTER}s/${ALLOW}s"
+    echo $(date "+%H:%M:%S") " pl_netinit: waiting for device $ETH_DEVICE - ${COUNTER}s/${ALLOW}s"
     COUNTER=$(($COUNTER+1))
     [ $COUNTER -ge $ALLOW ] && net_init_failed
     sleep 1
-- 
2.47.0