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