1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-12 11:12:06 +00:00

more readable/safer

This commit is contained in:
A Holt 2017-12-07 18:48:35 -05:00 committed by GitHub
parent d415d9ac40
commit f3b010a5f0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,24 +16,24 @@ 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`
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,6 +43,8 @@ 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 stuff on screen
ip r
brctl show
echo "run start:$Start"