ifupdown-ng/executor-scripts/linux/link

10 lines
184 B
Text
Raw Normal View History

2020-07-26 09:36:31 +00:00
#!/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