upping the char limit by 1

This commit is contained in:
toby 2019-04-10 22:46:48 +00:00
parent 0d20e9c028
commit 54b08d2f38
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@
set -Eeuo pipefail
IFACE=$1
if [ ${#IFACE} -gt 14 ]; then
if [ ${#IFACE} -gt 15 ]; then
echo "interface name too long, mac 14 char: $IFACE"
exit 10
fi