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

12 lines
354 B
YAML
Raw Normal View History

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