Remove dynamic includes from package installations

For some reason the dynamic includes are working inconsistently,
resulting in failed builds. While it is less desirable to remove
them as this will extend execution time, it is far better to have
reliable build results.

Change-Id: I20cd04b569a067cc78aae369e4480e78bfbd5e5b
This commit is contained in:
Jesse Pretorius 2016-11-02 21:47:24 +00:00
parent 413710b785
commit c5ec404b88

View File

@ -14,16 +14,12 @@
# limitations under the License.
- include: haproxy_install_apt.yml
static: no
when:
- ansible_pkg_mgr == 'apt'
when: ansible_pkg_mgr == 'apt'
tags:
- install-apt
- include: haproxy_install_yum.yml
static: no
when:
- ansible_pkg_mgr == 'yum'
when: ansible_pkg_mgr == 'yum'
tags:
- install-yum