From d7cd912d8709605a6f3528aea5b356fc8af3f4f0 Mon Sep 17 00:00:00 2001 From: A Holt Date: Wed, 13 Dec 2017 07:19:44 -0500 Subject: [PATCH] vertical spacing of diags fixed in iiab-network.log & live output --- iiab-network | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/iiab-network b/iiab-network index 5263ed58c..33dfecfd8 100755 --- a/iiab-network +++ b/iiab-network @@ -49,25 +49,27 @@ fi #if [[ `type -P nmcli` ]]; then # "type -P" isn't POSIX compliant; it misses built-in commands like "cd" if [[ `command -v nmcli` ]]; then # "command -v" is POSIX compliant; it catches built-in commands like "cd" nmcli d >> iiab-network.log + echo >> iiab-network.log nmcli c >> iiab-network.log fi -echo "" >> iiab-network.log ip r >> iiab-network.log -echo "" >> iiab-network.log brctl show >> iiab-network.log +echo >> iiab-network.log echo "run start: $Start" >> iiab-network.log echo "run end: $End" >> iiab-network.log -echo "" >> iiab-network.log -echo "" >> iiab-network.log +echo >> iiab-network.log +echo >> iiab-network.log # Put the same diagnostics on screen, for live operator if [[ `command -v nmcli` ]]; then nmcli d + echo nmcli c fi ip r brctl show +echo echo "run start: $Start" echo "run end: $End"