summaryrefslogtreecommitdiffstats
path: root/dhcpcd-hooks/10-mtu
diff options
context:
space:
mode:
Diffstat (limited to 'dhcpcd-hooks/10-mtu')
-rw-r--r--dhcpcd-hooks/10-mtu4
1 files changed, 2 insertions, 2 deletions
diff --git a/dhcpcd-hooks/10-mtu b/dhcpcd-hooks/10-mtu
index 4265b482..167d6467 100644
--- a/dhcpcd-hooks/10-mtu
+++ b/dhcpcd-hooks/10-mtu
@@ -1,5 +1,5 @@
# Configure the MTU for the interface
-if [ -n "${new_interface_mtu}" ]; then
- ifconfig "${interface}" mtu "${new_interface_mtu}"
+if [ -n "$new_interface_mtu" ]; then
+ ifconfig "$interface" mtu "$new_interface_mtu"
fi