21 lines
692 B
YAML
21 lines
692 B
YAML
---
|
|
- include: ../local-setup.yaml
|
|
|
|
- hosts: $hosts
|
|
user: $user
|
|
gather_facts: false
|
|
vars:
|
|
dmg_url: http://files.vagrantup.com/packages/64e360814c3ad960d810456add977fd4c7d47ce6/Vagrant.dmg
|
|
mount_path: /Volumes/Vagrant/
|
|
install_target: /Volumes/OSX
|
|
vars_files:
|
|
- ../local-setup-vars.yaml
|
|
tasks:
|
|
- name: Download Vagrant
|
|
get_url: url=$dmg_url dest=${downloads}/vagrant.dmg
|
|
- name: Mount Vagrant image
|
|
command: hdiutil mount vagrant.dmg chdir=$downloads
|
|
- name: Install Vagrant pkg
|
|
command: sudo installer -package ${mount_path}vagrant.pkg -target $install_target
|
|
- name: Unmount Vagrant image
|
|
command: hdiutil unmount $mount_path |