diff options
author | Jouke Witteveen <j.witteveen@gmail.com> | 2012-05-17 00:19:51 +0200 |
---|---|---|
committer | Jouke Witteveen <j.witteveen@gmail.com> | 2012-05-17 00:19:51 +0200 |
commit | 91ff1c8c4ee490d113ac25fbca0f4596ca069a7d (patch) | |
tree | 97905757ef254a7075806ce2125895792579f81a | |
parent | ce28459bc22b4de1a2dc57cf4ae1cf7fdefdb356 (diff) | |
download | netctl-91ff1c8c4ee490d113ac25fbca0f4596ca069a7d.tar.gz netctl-91ff1c8c4ee490d113ac25fbca0f4596ca069a7d.tar.xz |
Fix variable name mix-up in bonding documentation (FS#29918)
BOND_INTERFACES was documented, but SLAVE_INTERFACES was implemented.
-rw-r--r-- | docs/examples/bonding | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/bonding b/docs/examples/bonding index 7b70d46..e8d4a7f 100644 --- a/docs/examples/bonding +++ b/docs/examples/bonding @@ -4,6 +4,6 @@ INTERFACE='bond0' IP='static' ADDR="10.0.0.1" NETMASK="255.0.0.0" -BOND_INTERFACES=("eth0" "eth2") +SLAVE_INTERFACES=("eth0" "eth2") SKIPNOCARRIER="yes" |