mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
718 B
YAML
20 lines
718 B
YAML
6 years ago
|
- hosts: testhost
|
||
|
tasks:
|
||
|
- name: Install openssl
|
||
|
import_role:
|
||
|
name: setup_openssl
|
||
|
|
||
|
- name: "RedHat <= 7, select last version compatible with request 2.6.0 (this version doesn't support approle auth)"
|
||
|
set_fact:
|
||
|
hvac_package: 'hvac==0.2.5'
|
||
|
when: ansible_distribution == 'RedHat' and ansible_distribution_major_version is version('7', '<=')
|
||
|
|
||
|
- name: 'CentOS < 7, select last version compatible with Python 2.6'
|
||
|
set_fact:
|
||
|
hvac_package: 'hvac==0.5.0'
|
||
|
when: ansible_distribution == 'CentOS' and ansible_distribution_major_version is version('7', '<')
|
||
|
|
||
|
- name: 'Install hvac Python package'
|
||
|
pip:
|
||
|
name: "{{ hvac_package|default('hvac') }}"
|