summaryrefslogtreecommitdiffstats
path: root/hosts/odxu4b-armhf-rb/etc/rc.local
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/odxu4b-armhf-rb/etc/rc.local')
-rwxr-xr-xhosts/odxu4b-armhf-rb/etc/rc.local14
1 files changed, 14 insertions, 0 deletions
diff --git a/hosts/odxu4b-armhf-rb/etc/rc.local b/hosts/odxu4b-armhf-rb/etc/rc.local
index 7a3ac282..9248a7a7 100755
--- a/hosts/odxu4b-armhf-rb/etc/rc.local
+++ b/hosts/odxu4b-armhf-rb/etc/rc.local
@@ -42,6 +42,16 @@ fixup_shm() {
chmod 1777 /dev/shm
}
+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
+ ip link set dev eth0 mtu 1500
+ fi
+ fi
+}
+
#
# init, notify about reboots
#
@@ -79,6 +89,10 @@ esac
fixup_shm
#
+# fixup eth0's MTU if needed
+fixup_mtu
+
+#
# put schroots on tmpfs for non debian hosts
#
case $(hostname) in