9 lines
184 B
Bash
Executable file
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
|