Add ansible stuff

This commit is contained in:
Oliver Davies 2019-12-05 12:16:37 +00:00
parent bbb4a9c666
commit 23fcf88ad9
21 changed files with 319 additions and 0 deletions

View file

@ -0,0 +1,12 @@
---
- name: Install Drupal
command: |
{{ release_drush_path }} site-install config_installer -y
--account-pass=admin123
args:
chdir: '{{ release_drupal_path }}'
- name: Rebuild cache
command: '{{ release_drush_path }} cache-rebuild'
args:
chdir: '{{ release_drupal_path }}'