diff options
author | Ben Pfaff <blp@ovn.org> | 2020-06-17 14:16:08 -0700 |
---|---|---|
committer | Ben Pfaff <blp@ovn.org> | 2020-10-21 11:28:24 -0700 |
commit | 91fc374a9c5a2a4d9520aaa3588a7a18338a476e (patch) | |
tree | 36e097d0f7b655e90179c04e21eb7fe4c400889b /debian/ifupdown.sh | |
parent | f51cf36d86e4a51630dc2781034149c13a634d67 (diff) | |
download | openvswitch-91fc374a9c5a2a4d9520aaa3588a7a18338a476e.tar.gz |
Eliminate use of term "slave" in bond, LACP, and bundle contexts.
The new term is "member".
Most of these changes should not change user-visible behavior. One
place where they do is in "ovs-ofctl dump-flows", which will now output
"members:..." inside "bundle" actions instead of "slaves:...". I don't
expect this to cause real problems in most systems. The old syntax
is still supported on input for backward compatibility.
Signed-off-by: Ben Pfaff <blp@ovn.org>
Acked-by: Alin Gabriel Serdean <aserdean@cloudbasesolutions.com>
Diffstat (limited to 'debian/ifupdown.sh')
-rwxr-xr-x | debian/ifupdown.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/debian/ifupdown.sh b/debian/ifupdown.sh index 9a7772d03..01982acbf 100755 --- a/debian/ifupdown.sh +++ b/debian/ifupdown.sh @@ -65,9 +65,9 @@ if [ "${MODE}" = "start" ]; then ${OVS_EXTRA+-- $OVS_EXTRA} ip link set "${IFACE}" up - for slave in ${IF_OVS_BONDS} + for member in ${IF_OVS_BONDS} do - ip link set "${slave}" up + ip link set "${member}" up done ;; OVSPatchPort) |