diff options
author | Sebastin Santy <sebastinssanty@gmail.com> | 2017-12-11 03:33:22 +0100 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2017-12-11 03:33:22 +0100 |
commit | ae3e8609d87ade851962d2caa22ac16046ca0a47 (patch) | |
tree | c8909cb27fb8250d4a9af5bbc180a1f5e08a1985 /vagrant_support | |
parent | 9f78732d27637da703ac0ee40c76f8eb46e73fd2 (diff) | |
download | bugzilla-ae3e8609d87ade851962d2caa22ac16046ca0a47.tar.gz bugzilla-ae3e8609d87ade851962d2caa22ac16046ca0a47.tar.xz |
no bug - Remove deprecation warning due to include in Ansible (#287)
Diffstat (limited to 'vagrant_support')
-rw-r--r-- | vagrant_support/playbook.yml | 18 | ||||
-rw-r--r-- | 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 |