1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix the fedora host detection

This commit is contained in:
Toshio Kuratomi 2015-12-18 15:42:41 -08:00
parent 78dde62710
commit f7ed33378e
2 changed files with 1 additions and 3 deletions

View file

@ -28,8 +28,6 @@
- name: Wait a little longer for centos - name: Wait a little longer for centos
pause: seconds=20 pause: seconds=20
- debug: var=ec2.results
- name: Add hosts group temporary inventory group with pem path - name: Add hosts group temporary inventory group with pem path
add_host: add_host:
name: "{{ item.1.platform }}-{{ ec2.results[item.0]['instances'][0]['public_ip'] }}" name: "{{ item.1.platform }}-{{ ec2.results[item.0]['instances'][0]['public_ip'] }}"

View file

@ -41,7 +41,7 @@
tasks: tasks:
- name: Install packages that let setup and package manager modules run - name: Install packages that let setup and package manager modules run
raw: dnf install -y python2 python2-dnf libselinux-python raw: dnf install -y python2 python2-dnf libselinux-python
when: "'{{ inventory_hostname }}' == 'fedora-23-x86_64'" when: "'fedora-23' in '{{ inventory_hostname }}'"
- hosts: dynamic_hosts - hosts: dynamic_hosts
sudo: true sudo: true