6 lines
137 B
Bash
Executable file
6 lines
137 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
[ -z "$IF_BOND_MEMBERS" ] && IF_BOND_MEMBERS="$IF_BOND_SLAVES"
|
|
case "$PHASE" in
|
|
depend) echo "$IF_BOND_MEMBERS" ;;
|
|
esac
|