cleaning up leading space vs tab bs

This commit is contained in:
toby 2018-10-09 16:23:52 +00:00
parent 4f7f177cc6
commit 1f58cd3918
1 changed files with 10 additions and 10 deletions

View File

@ -24,16 +24,16 @@ case "$1" in
### START gather all the info from the box and generate the variabels ### START gather all the info from the box and generate the variabels
export LOOPBACKv4=$(dig a +short ${HOSTNAME}) export LOOPBACKv4=$(dig a +short ${HOSTNAME})
export LOOPBACKv6=$(dig aaaa +short ${HOSTNAME}) export LOOPBACKv6=$(dig aaaa +short ${HOSTNAME})
NODEASN=$(dig txt +short asn.${HOSTNAME}) NODEASN=$(dig txt +short asn.${HOSTNAME})
NODEASN="${NODEASN%\"}" NODEASN="${NODEASN%\"}"
NODEASN="${NODEASN#\"}" NODEASN="${NODEASN#\"}"
export NODEASN export NODEASN
if [ -z $LOOPBACKv4 ] || [ -z $LOOPBACKv6 ] || [ -z $NODEASN ]; then if [ -z $LOOPBACKv4 ] || [ -z $LOOPBACKv6 ] || [ -z $NODEASN ]; then
echo "unable to find my LOOPBACK IP and/or ASN: $LOOPBACKv4/$LOOPBACKv6/$NODEASN" echo "unable to find my LOOPBACK IP and/or ASN: $LOOPBACKv4/$LOOPBACKv6/$NODEASN"
exit 2 exit 2
fi fi
declare -A MACS declare -A MACS
@ -119,7 +119,7 @@ case "$1" in
# wite grub rules for serial terminal # wite grub rules for serial terminal
sed -i -e '/GRUB_CMDLINE_LINUX_DEFAULT=/d' -e '/GRUB_CMDLINE_LINUX=/d' -e '/GRUB_SERIAL_COMMAND=/d' -e '/GRUB_TERMINAL=/d' /etc/default/grub sed -i -e '/GRUB_CMDLINE_LINUX_DEFAULT=/d' -e '/GRUB_CMDLINE_LINUX=/d' -e '/GRUB_SERIAL_COMMAND=/d' -e '/GRUB_TERMINAL=/d' /etc/default/grub
cat <<-EOF >>/etc/default/grub cat <<-EOF >>/etc/default/grub
GRUB_CMDLINE_LINUX_DEFAULT="" GRUB_CMDLINE_LINUX_DEFAULT=""
GRUB_CMDLINE_LINUX="console=tty0 console=ttyS1,115200n8" GRUB_CMDLINE_LINUX="console=tty0 console=ttyS1,115200n8"