agaric-coop/provisioning/box/pre-tasks/00-name_by_path.yml

20 lines
587 B
YAML
Raw Normal View History

---
- name: get root folder of project
shell: pwd
register: proj_root
args:
chdir: "{{ playbook_dir }}/../../"
delegate_to: localhost
become: false
2018-08-23 18:10:17 +00:00
- name: remove underscores from folder name
set_fact:
proj_root_safe: "{{ proj_root.stdout|basename|replace('_','-') }}"
# 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:
2018-08-23 18:10:17 +00:00
vagrant_hostname: "{{ proj_root_safe }}.local"
vagrant_machine_name: "{{ proj_root_safe }}-coop-vm"