dransible-old/ansible/deploy/after-symlink-shared.yml

12 lines
349 B
YAML
Raw Normal View History

---
2019-07-23 00:25:59 +00:00
- name: Fix files directory permissions
become: true
file:
path: '{{ app_project_root }}/shared/web/sites/default/files'
state: directory
mode: 0775
recurse: true
2019-07-23 00:25:49 +00:00
- name: Install Drupal
command: '{{ release_drush_path }} --root {{ release_web_path }} site-install -y --account-pass=admin123 --site-name="PHP South Wales"'