]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
no bug - Remove deprecation warning due to include in Ansible (#287)
authorSebastin Santy <sebastinssanty@gmail.com>
Mon, 11 Dec 2017 02:33:22 +0000 (08:03 +0530)
committerDylan William Hardison <dylan@hardison.net>
Mon, 11 Dec 2017 02:33:22 +0000 (21:33 -0500)
vagrant_support/playbook.yml
vagrant_support/update.yml

index 94d9325a3fbb52f3f69b00c5d54c3d10bf4fc687..5fb9d1e7e7898d6e64a9d498f3d64cc8ac367ee8 100644 (file)
@@ -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
 
     - 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
         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
index 879345c577e099038cb924d029aa6f96e6ffd1a2..c53a0554e7cd94fb0ce08483cf6a45c8fbf0c606 100644 (file)
@@ -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