Remove obsolete interface adding for ipv6

eth6 doesn't exist, don't configure it at all,
instead of this the external interface wil be configured
according to network-template.yaml file settings.

Change-Id: Ib4ef9ee5a8ed04273ec6614c33f953642ac22d7c
This commit is contained in:
Sagi Shnaidman 2017-06-25 23:31:14 +03:00
parent 46642b0b56
commit bb1e2d34c0

View File

@ -75,20 +75,6 @@ EOF'
sudo ifup ifcfg-{{ network.device_name }}
{% else %}
sudo bash -c 'cat <<EOF > /etc/sysconfig/network-scripts/ifcfg-eth6
DEVICE=eth6
ONBOOT=yes
BOOTPROTO=static
IPADDR={{ network.address }}
NETMASK={{ network.netmask }}
IPV6ADDR={{ network.address6 }}
IPV6INIT=yes
EOF'
sudo ifup ifcfg-eth6
{%endif%}