WIP: Add testing Makefile and matrix definitions

This commit is contained in:
Michael Russell 2018-06-13 09:34:28 +02:00
parent 6d82cf3142
commit c1b83a892f
No known key found for this signature in database
GPG key ID: A90C1696496085FE
5 changed files with 117 additions and 32 deletions

View file

@ -28,10 +28,10 @@
- name: Debian - Ensure elasticsearch is installed
become: yes
apt:
name: {{ es_package_name }}{% if es_version is defined and es_version != "" %}={{ es_version }}{% endif %}
name: '{{ es_package_name }}{% if es_version is defined and es_version != "" %}={{ es_version }}{% endif %}'
state: present
force: {{force_install}}
allow_unauthenticated: {{ 'no' if es_apt_key else 'yes' }}
force: '{{ force_install }}'
allow_unauthenticated: "{{ 'no' if es_apt_key else 'yes' }}"
cache_valid_time: 86400
when: es_use_repository
register: debian_elasticsearch_install_from_repo