8 lines
117 B
Bash
Executable file
8 lines
117 B
Bash
Executable file
#!/bin/sh
|
|
case "$PHASE" in
|
|
depend)
|
|
if [ "$IF_BRIDGE_PORTS" != "none" ]; then
|
|
echo "$IF_BRIDGE_PORTS"
|
|
fi
|
|
;;
|
|
esac
|