Ver código fonte

Require ansible-2.1

Andrew Butcher 8 anos atrás
pai
commit
856e47e3a0
4 arquivos alterados com 7 adições e 7 exclusões
  1. 2 2
      README.md
  2. 1 1
      README_AEP.md
  3. 1 1
      openshift-ansible.spec
  4. 3 3
      roles/openshift_facts/tasks/main.yml

+ 2 - 2
README.md

@@ -11,11 +11,11 @@ they may in the future.
 - Install base dependencies:
   - Fedora:
   ```
-    dnf install -y ansible-1.9.4 pyOpenSSL python-cryptography
+    dnf install -y ansible-2.1.0.0 pyOpenSSL python-cryptography
   ```
    - OSX:
   ```
-    # Install ansible 1.9.4 and python 2
+    # Install ansible 2.1.0.0 and python 2
     brew install ansible python
   ```
 - Setup for a specific cloud:

+ 1 - 1
README_AEP.md

@@ -10,7 +10,7 @@
 * [Overriding detected ip addresses and hostnames](#overriding-detected-ip-addresses-and-hostnames)
 
 ## Requirements
-* ansible 1.9.4
+* ansible 2.1.0.0
   * Available in Fedora channels
   * Available for EL with EPEL and Optional channel
 * One or more RHEL 7.1 VMs

+ 1 - 1
openshift-ansible.spec

@@ -13,7 +13,7 @@ URL:            https://github.com/openshift/openshift-ansible
 Source0:        https://github.com/openshift/openshift-ansible/archive/%{commit}/%{name}-%{version}.tar.gz
 BuildArch:      noarch
 
-Requires:      ansible >= 1.9.4
+Requires:      ansible >= 2.1.0.0
 Requires:      python2
 Requires:      openshift-ansible-docs = %{version}-%{release}
 

+ 3 - 3
roles/openshift_facts/tasks/main.yml

@@ -1,8 +1,8 @@
 ---
-- name: Verify Ansible version is greater than or equal to 1.9.4
+- name: Verify Ansible version is greater than or equal to 2.1.0.0
   fail:
-    msg: "Unsupported ansible version: {{ ansible_version }} found"
-  when: not ansible_version.full | version_compare('1.9.4', 'ge')
+    msg: "Unsupported ansible version: {{ ansible_version.full }} found"
+  when: not ansible_version.full | version_compare('2.1.0.0', 'ge')
 
 - name: Detecting Operating System
   stat: