Merge "use include_tasks instead of include"

This commit is contained in:
Zuul 2018-09-08 20:59:26 +00:00 committed by Gerrit Code Review
commit cbc51af0f0
3 changed files with 9 additions and 9 deletions

View File

@ -211,7 +211,7 @@
changed_when: wiring_script.rc == 3
delegate_to: "{{ physical_host }}"
- include: "lxc_container_network_new.yml"
- include_tasks: "lxc_container_network_new.yml"
# VETH AND CONNECTIVITY SETTINGS

View File

@ -18,9 +18,9 @@
become: true
gather_facts: true
tasks:
- include: "common/common-tasks/test-set-nodepool-vars.yml"
- include_tasks: "common/common-tasks/test-set-nodepool-vars.yml"
- include: "common/destroy_containers.yml"
- import_playbook: "common/destroy_containers.yml"
when: destroy_first | default(True) | bool
- name: Playbook for creating containers

View File

@ -14,19 +14,19 @@
# limitations under the License.
# Create a zfs backend
- include: test-create-zfs-dev.yml
- import_playbook: test-create-zfs-dev.yml
# Create a btrfs backend
- include: test-create-btrfs-dev.yml
- import_playbook: test-create-btrfs-dev.yml
# Prepare the user ssh keys
- include: common/test-prepare-keys.yml
- import_playbook: common/test-prepare-keys.yml
# Prepare the host
- include: common/test-prepare-host.yml
- import_playbook: common/test-prepare-host.yml
# Create the containers
- include: test-containers-create.yml
- import_playbook: test-containers-create.yml
# Test container creation
- include: test-containers-functional.yml
- import_playbook: test-containers-functional.yml