Correct ipv4 networking config issue in dynamic path

A syntax error in a template file coupled with the incorect
ipv4_gateway being set when testing resulted in Cirros being
unable to get a working network interface online.

This corrects the template and addresses the ipv4_gateway default
when using the test playbook.

Change-Id: I7155de8ec9a4123e16a9f9925a66ee12adfc9c28
This commit is contained in:
Julia Kreger 2015-06-19 14:08:27 -04:00
parent 7d6ba6a295
commit 5bd90bab01
2 changed files with 3 additions and 2 deletions

View File

@ -3,8 +3,6 @@ auto lo
iface lo inet loopback
auto {{ node_default_network_interface }}
iface {{ node_default_network_interface }} inet static
{% if addressing_mode is defined and "dhcp" in addressing_mode %}
iface {{ node_default_network_interface }} inet dhcp
{% else %}

View File

@ -19,6 +19,9 @@
set_fact:
ci_testing_zuul: true
when: "'bare-trusty' in ansible_hostname"
- name: "Override the ipv4_gateway setting"
set_fact:
ipv4_gateway: "192.168.122.1"
- name: "Collect process list if running in OpenStack CI"
command: ps aux
when: ci_testing_zuul is defined