mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
Merge pull request #611 from holta/iiab-network
./iiab-network quick cleanup
This commit is contained in:
commit
18982aa54d
1 changed files with 10 additions and 7 deletions
17
iiab-network
17
iiab-network
|
@ -16,24 +16,25 @@ if [ ! -f /etc/iiab/config_vars.yml ]; then
|
|||
echo "{}" > /etc/iiab/config_vars.yml
|
||||
fi
|
||||
|
||||
OS="unknown" # will be overridden below, if /etc/iiab/iiab.env is legit
|
||||
if [ -f /etc/iiab/iiab.env ]; then
|
||||
source /etc/iiab/iiab.env
|
||||
else
|
||||
OS="unknown"
|
||||
fi
|
||||
|
||||
Start=`date`
|
||||
ansible-playbook -i ansible_hosts iiab-network.yml --connection=local
|
||||
End=`date`
|
||||
|
||||
# Record critical diagnostics to [/opt/iiab/iiab/]iiab-network.log
|
||||
echo "" >> iiab-network.log
|
||||
# redhat path
|
||||
if [ "OS" == "centos" ] || [ "OS" == "fedora" ]; then
|
||||
ls -la /etc/sys*/net*/ifcfg* >> iiab-network.log
|
||||
ls -la /etc/sys*/net*/ifcfg* >> iiab-network.log
|
||||
fi
|
||||
# ubuntu destop might be using NM - split out.
|
||||
# Ubuntu desktop might be using NM - split out.
|
||||
if [ $(which nmcli) ]; then
|
||||
nmcli d >> iiab-network.log
|
||||
nmcli c >> iiab-network.log
|
||||
nmcli d >> iiab-network.log
|
||||
nmcli c >> iiab-network.log
|
||||
fi
|
||||
echo "" >> iiab-network.log
|
||||
ip r >> iiab-network.log
|
||||
|
@ -43,7 +44,9 @@ echo "run start: $Start" >> iiab-network.log
|
|||
echo "run end: $End" >> iiab-network.log
|
||||
echo "" >> iiab-network.log
|
||||
echo "" >> iiab-network.log
|
||||
|
||||
# Put the same diagnostics on screen, for live operator
|
||||
ip r
|
||||
brctl show
|
||||
echo "run start:$Start"
|
||||
echo "run start: $Start"
|
||||
echo "run end: $End"
|
||||
|
|
Loading…
Add table
Reference in a new issue