From ae3e8609d87ade851962d2caa22ac16046ca0a47 Mon Sep 17 00:00:00 2001 From: Sebastin Santy Date: Mon, 11 Dec 2017 08:03:22 +0530 Subject: no bug - Remove deprecation warning due to include in Ansible (#287) --- vagrant_support/playbook.yml | 18 +++++++++--------- vagrant_support/update.yml | 4 ++-- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/vagrant_support/playbook.yml b/vagrant_support/playbook.yml index 94d9325a3..5fb9d1e7e 100644 --- a/vagrant_support/playbook.yml +++ b/vagrant_support/playbook.yml @@ -2,7 +2,7 @@ - hosts: all become: true tasks: - - include: timezone.yml + - import_tasks: timezone.yml - name: install epel-release yum: name=epel-release state=present @@ -175,7 +175,7 @@ - name: add data symlink file: path=/vagrant/data src=/data state=link force=true - - include: memcached.yml + - import_tasks: memcached.yml - name: add vagrant to apache group user: name=vagrant groups=apache append=yes @@ -186,17 +186,17 @@ dest: /usr/local/bin/bmo-refresh-bundle mode: 0755 - - include: checksetup.yml + - include_tasks: checksetup.yml vars: LAZY: 0 - - include: cron.yml - - include: jobqueue.yml - - include: push.yml - - include: email.yml - - include: apache.yml + - import_tasks: cron.yml + - import_tasks: jobqueue.yml + - import_tasks: push.yml + - import_tasks: email.yml + - include_tasks: apache.yml vars: LAZY: 0 - - include: devtools.yml + - import_tasks: devtools.yml - name: fix owner of /vagrant/template_cache file: path=/vagrant/template_cache state=directory owner=vagrant group=apache recurse=yes diff --git a/vagrant_support/update.yml b/vagrant_support/update.yml index 879345c57..c53a0554e 100644 --- a/vagrant_support/update.yml +++ b/vagrant_support/update.yml @@ -15,9 +15,9 @@ - name: add data symlink file: path=/vagrant/data src=/data state=link force=true - - include: checksetup.yml + - include_tasks: checksetup.yml vars: LAZY: 1 - - include: apache.yml + - include_tasks: apache.yml vars: LAZY: 1 \ No newline at end of file -- cgit v1.2.3-24-g4f1b