aboutsummaryrefslogtreecommitdiffstats
path: root/deploy/adapters/ansible/roles/onos_cluster/tasks
diff options
context:
space:
mode:
authorCNlukai <lukai1@huawei.com>2016-01-30 11:34:27 +0800
committerJustin chi <chigang@huawei.com>2016-02-06 03:22:58 +0000
commitab495546af8ba0fe9ea1234e4f25a7e62ed92191 (patch)
tree7ea365befb59cb6432689377da7c791e28ab43b5 /deploy/adapters/ansible/roles/onos_cluster/tasks
parent591568ec3c309621689e50b32da328398c3b9df8 (diff)
Update the method to get external nic mac address
JIRA: COMPASS-295 Change-Id: Ifc72424d2627f444ec52d2875a5252f9fd898c8a Signed-off-by: CNlukai <lukai1@huawei.com> Signed-off-by: Justin-chi <chigang@huawei.com>
Diffstat (limited to 'deploy/adapters/ansible/roles/onos_cluster/tasks')
-rwxr-xr-xdeploy/adapters/ansible/roles/onos_cluster/tasks/openvswitch.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/deploy/adapters/ansible/roles/onos_cluster/tasks/openvswitch.yml b/deploy/adapters/ansible/roles/onos_cluster/tasks/openvswitch.yml
index 9761af71..47f0f6e8 100755
--- a/deploy/adapters/ansible/roles/onos_cluster/tasks/openvswitch.yml
+++ b/deploy/adapters/ansible/roles/onos_cluster/tasks/openvswitch.yml
@@ -48,7 +48,7 @@
- name: set veth to ovs
shell: >
- export externamMac=`ifconfig eth1 | grep "HWaddr" | awk '{print $5}'`;
+ export externamMac=`ifconfig eth1 | grep -Eo '\<[0-9a-fA-F]{2}(:[0-9a-fA-F]{2}){5}'`;
ifconfig onos_port2 hw ether $externamMac;
ovs-vsctl add-port br-prv onos_port1;
ignore_errors: True