8 lines
90 B
Text
8 lines
90 B
Text
|
#!/bin/sh
|
||
|
case "$PHASE" in
|
||
|
depend)
|
||
|
RAW_DEVICE="${IFACE%.*}"
|
||
|
echo "$RAW_DEVICE"
|
||
|
;;
|
||
|
esac
|