From 196bb034779bf4ca7362aec2c6139a3214f76969 Mon Sep 17 00:00:00 2001 From: Lukas Nykryn Date: Wed, 1 Mar 2017 14:43:53 +0100 Subject: [PATCH] write-ifcfg: do't write MTU twice for regular eth devices If MTU is specified, we write it for every type of device in the beginning. There is not point writing it again for Type=ethernet devices. --- modules.d/45ifcfg/write-ifcfg.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/modules.d/45ifcfg/write-ifcfg.sh b/modules.d/45ifcfg/write-ifcfg.sh index 5b0c50dd0..811a84782 100755 --- a/modules.d/45ifcfg/write-ifcfg.sh +++ b/modules.d/45ifcfg/write-ifcfg.sh @@ -201,10 +201,7 @@ for netup in /tmp/net.*.did-setup ; do # bridge needs different things written to ifcfg if [ -z "$bridge" ] && [ -z "$bond" ] && [ -z "$vlan" ]; then # standard interface - { - echo "TYPE=Ethernet" - [ -n "$mtu" ] && echo "MTU=\"$mtu\"" - } >> /tmp/ifcfg/ifcfg-$netif + echo "TYPE=Ethernet" >> /tmp/ifcfg/ifcfg-$netif fi if [ -n "$vlan" ] ; then -- 2.47.2