16 lines
517 B
YAML
16 lines
517 B
YAML
|
---
|
||
|
- name: get root folder of project
|
||
|
shell: pwd
|
||
|
register: proj_root
|
||
|
args:
|
||
|
chdir: "{{ playbook_dir }}/../../"
|
||
|
delegate_to: localhost
|
||
|
become: false
|
||
|
|
||
|
# These values are NOT honored by Vagrant, but are still necessary for DrupalVM
|
||
|
# See also provisioning/box/config
|
||
|
- name: set vagrant hostname according to the project folder
|
||
|
set_fact:
|
||
|
vagrant_hostname: "{{ proj_root.stdout|replace("_", "-")|basename }}.local"
|
||
|
vagrant_machine_name: "{{ proj_root.stdout|replace("_", "-")|basename }}-coop-vm"
|