aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/csource
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2018-04-11 11:36:25 +0200
committerDmitry Vyukov <dvyukov@google.com>2018-04-11 11:36:25 +0200
commit9cd56d71a84c470aa92422144a76d42c8ff6d11d (patch)
tree8c904de5471ce9094d68ee93e5b2e5047fb5436d /pkg/csource
parentcde43bc6bc3f8d3434d99f4e313c95f6b0ac53ec (diff)
sys/linux: add veth devices to devnames
Also comment new veth code for future me.
Diffstat (limited to 'pkg/csource')
-rw-r--r--pkg/csource/linux_common.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/pkg/csource/linux_common.go b/pkg/csource/linux_common.go
index a28bc8baa..96361ad6f 100644
--- a/pkg/csource/linux_common.go
+++ b/pkg/csource/linux_common.go
@@ -571,7 +571,6 @@ static void initialize_netdevices(void)
execute_command(0, "ip link set dev %s address %s", devnames[i], addr);
execute_command(0, "ip link set dev %s up", devnames[i]);
}
-
execute_command(0, "ip link add name bond_slave type veth peer name team_slave");
execute_command(0, "ip link set bond_slave master bond0");
execute_command(0, "ip link set team_slave master team0");