There was an error while loading. Please reload this page.
1 parent 26b2dfe commit 9ec2237Copy full SHA for 9ec2237
default.config.yml
@@ -314,6 +314,7 @@ solr_xmx: "128M"
314
selenium_version: 2.53.0
315
316
# Other configuration.
317
+workspace: "/root/php{{ php_version }}"
318
dashboard_install_dir: /var/www/dashboard
319
known_hosts_path: ~/.ssh/known_hosts
320
#ssh_home: "{{ drupal_core_path }}"
provisioning/playbook.yml
@@ -36,6 +36,13 @@
36
when: ansible_os_family == 'RedHat'
37
static: no
38
39
+ - name: Ensure workspace directory exists.
40
+ file:
41
+ path: "{{ workspace }}"
42
+ state: directory
43
+ mode: 0775
44
+ when: workspace is defined
45
+
46
- name: Run configured pre-provision shell scripts.
47
script: "{{ item }}"
48
with_items: "{{ pre_provision_scripts|default([]) }}"
0 commit comments