From 0018114a2da9f22cfa581961a5a3bc7043088bd6 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Fri, 28 Apr 2017 15:18:00 +0200 Subject: simplify (and fix) check for incorrect mtu Signed-off-by: Holger Levsen --- hosts/wbq0-armhf-rb/etc/rc.local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hosts/wbq0-armhf-rb') diff --git a/hosts/wbq0-armhf-rb/etc/rc.local b/hosts/wbq0-armhf-rb/etc/rc.local index 8fed77ba..c5caa74c 100755 --- a/hosts/wbq0-armhf-rb/etc/rc.local +++ b/hosts/wbq0-armhf-rb/etc/rc.local @@ -45,7 +45,7 @@ fixup_mtu() { # only act on systems which have eth0 if ip link show eth0 >/dev/null 2>&1 ; then # if MTU != 1500 set it to 1500 - if [ "$(ip link show eth0 | sed -n '/LOOPBACK\|NOARP/!s/.* mtu \([0-9]*\) .*/\1/p' )" != "1500" ] ; then + if [ -z "$(ip link show eth0 | grep 'eth0:' | grep 'mtu 1500 ' || true)" ] ; then ip link set dev eth0 mtu 1500 fi fi -- cgit v1.2.3-54-g00ecf