Change include: to include_tasks:

This removes warnings in Ansible 2.4+.

The patch also removes the "static:" argument which is no longer
used by Ansible.

Change-Id: Iee7cd23ccd93e0f3a379fcd42dbd12ba3ee25cac
This commit is contained in:
Major Hayden 2018-02-15 10:25:02 -06:00
parent 835f47d44c
commit bfc6597b6e
2 changed files with 8 additions and 10 deletions

View File

@ -18,7 +18,7 @@ galaxy_info:
description: Installation and setup of glance
company: Rackspace
license: Apache2
min_ansible_version: 2.2
min_ansible_version: 2.4
platforms:
- name: Ubuntu
versions:

View File

@ -25,36 +25,34 @@
tags:
- always
- include: glance_pre_install.yml
- include_tasks: glance_pre_install.yml
tags:
- glance-install
- include: glance_install.yml
- include_tasks: glance_install.yml
tags:
- glance-install
- include: glance_post_install.yml
- include_tasks: glance_post_install.yml
tags:
- glance-config
- include: "glance_init_{{ ansible_service_mgr }}.yml"
- include_tasks: "glance_init_{{ ansible_service_mgr }}.yml"
tags:
- glance-config
- include: glance_db_setup.yml
static: no
- include_tasks: glance_db_setup.yml
when:
- "glance_services['glance-api']['group'] in group_names"
- "inventory_hostname == ((groups[glance_services['glance-api']['group']]| intersect(ansible_play_hosts)) | list)[0]"
tags:
- glance-config
- include: glance_uwsgi.yml
- include_tasks: glance_uwsgi.yml
tags:
- glance-config
- include: glance_service_setup.yml
static: no
- include_tasks: glance_service_setup.yml
when:
- "glance_services['glance-api']['group'] in group_names"
- "inventory_hostname == ((groups[glance_services['glance-api']['group']]| intersect(ansible_play_hosts)) | list)[0]"