Home | History | Annotate | Download | only in dhcpcd-hooks
      1 # Configure the MTU for the interface
      2 
      3 if [ -n "${new_interface_mtu}" ]; then
      4 	ifconfig "${interface}" mtu "${new_interface_mtu}"
      5 fi
      6