ifupdown-ng/executor-scripts/linux/link
2020-08-18 15:57:01 -06:00

9 lines
184 B
Bash
Executable file

#!/bin/sh
[ -z "$VERBOSE" ] || set -x
OPTIONS=""
case "$PHASE" in
up|down)
[ -n "$IF_MTU" ] && OPTIONS="$OPTIONS mtu $IF_MTU"
${MOCK} ip link set $PHASE dev $IFACE $OPTIONS
;;
esac