Discussion:
IFENSLAVE example /usr/share/doc/ifenslave/examples/two_hotplug_ethernet
(too old to reply)
Lazar Krumov
2018-11-21 16:10:01 UTC
Permalink
Hi folks,

I've noticed a minor (typo) error in /usr/share/doc/ifenslave/examples/two_hotplug_ethernet
package: ifenslave

It is:
...
allow-hotplug eth0
iface eth0 inet manual
bond-master bond0
bond-primary eth0 eth1

allow-hotplug eth1
iface eth0 inet manual <<<<<<--------
...


But might should be:
...
allow-hotplug eth0
iface eth0 inet manual
bond-master bond0
bond-primary eth0 eth1

allow-hotplug eth1
iface eth1 inet manual <<<<<<--------
...

The distribution I've just installed is "Stable" Stretch (9.6)

Kind regards,
LAZA
Vincent McIntyre
2018-11-22 00:00:01 UTC
Permalink
Package: ifenslave
Version: 2.9
Severity: normal
Tags: patch


(sorry for the mess Guus)

diff --git a/debian/examples/two_hotplug_ethernet b/debian/examples/two_hotplug_ethernet
index 4d7f75f..9012e15 100644
--- a/debian/examples/two_hotplug_ethernet
+++ b/debian/examples/two_hotplug_ethernet
@@ -14,7 +14,7 @@ iface eth0 inet manual
bond-primary eth0 eth1

allow-hotplug eth1
-iface eth0 inet manual
+iface eth1 inet manual
bond-master bond0
bond-primary eth0 eth1

Loading...