Merge "Add supported Operating System check"

This commit is contained in:
Jenkins 2016-11-02 19:55:08 +00:00 committed by Gerrit Code Review
commit aad084cd15
2 changed files with 13 additions and 1 deletions

View File

@ -18,6 +18,14 @@
gather_facts: "{{ gather_facts | default(True) }}"
max_fail_percentage: 20
user: root
pre_tasks:
- name: Check for a supported Operating System
assert:
that:
- ansible_distribution | lower == 'ubuntu'
- ansible_distribution_release | lower == 'trusty' or
ansible_distribution_release | lower == 'xenial'
msg: "The only supported platforms for this release are Ubuntu 14.04 LTS (Trusty) and Ubuntu 16.04 LTS (Xenial)"
roles:
- role: "openstack_hosts"
tags:

View File

@ -15,7 +15,11 @@
- name: Check for a supported Operating System
assert:
that: ansible_distribution | lower == 'ubuntu'
that:
- ansible_distribution | lower == 'ubuntu'
- ansible_distribution_release | lower == 'trusty' or
ansible_distribution_release | lower == 'xenial'
msg: "The only supported platforms for this release are Ubuntu 14.04 LTS (Trusty) and Ubuntu 16.04 LTS (Xenial)"
tags:
- check-operating-system