This repository was archived by the owner on Feb 13, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ Vagrant.configure('2') do |config|
108108 config_dir : config_dir ,
109109 drupalvm_env : drupalvm_env
110110 }
111- ansible . raw_arguments = ENV [ 'DRUPALVM_ANSIBLE_ARGS' ]
111+ ansible . raw_arguments = Shellwords . shellsplit ( ENV [ 'DRUPALVM_ANSIBLE_ARGS' ] ) if ENV [ 'DRUPALVM_ANSIBLE_ARGS' ]
112112 ansible . tags = ENV [ 'DRUPALVM_ANSIBLE_TAGS' ]
113113 # Use pip to get the latest Ansible version when using ansible_local.
114114 provisioner == :ansible_local && ansible . install_mode = 'pip'
Original file line number Diff line number Diff line change @@ -28,11 +28,11 @@ DRUPALVM_ANSIBLE_ARGS='--verbose' vagrant provision
2828Begin the provisioning at a particular task:
2929
3030``` sh
31- DRUPALVM_ANSIBLE_ARGS=' --start-at-task= *post-provision shell*' vagrant provision
31+ DRUPALVM_ANSIBLE_ARGS=" --start-at-task ' *post-provision shell*'" vagrant provision
3232```
3333
3434Override a config variable:
3535
3636``` sh
37- DRUPALVM_ANSIBLE_ARGS=' --extra-vars= drupal_db_backend=pgsql' vagrant provision
37+ DRUPALVM_ANSIBLE_ARGS=' --extra-vars " drupal_db_backend=pgsql" ' vagrant provision
3838```
You can’t perform that action at this time.
0 commit comments