You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
337 B
16 lines
337 B
#!/bin/sh |
|
# |
|
# We get called like this: |
|
# /sbin/fcoe-up <network-device> <dcb|nodcb> |
|
# |
|
# Note currently only nodcb is supported, the dcb option is reserved for |
|
# future use. |
|
|
|
# Huh? Missing arguments ?? |
|
[ -z "$1" -o -z "$2" ] && exit 1 |
|
|
|
netif=$1 |
|
dcb=$2 |
|
|
|
/sbin/ip link set "$netif" up |
|
echo -n "$netif" > /sys/module/fcoe/parameters/create
|
|
|