mirror of
https://github.com/geerlingguy/mac-dev-playbook
synced 2024-11-29 07:10:19 +00:00
15 lines
No EOL
417 B
YAML
15 lines
No EOL
417 B
YAML
---
|
|
- hosts: all
|
|
connection: local
|
|
vars:
|
|
app_name: Google\ Chrome
|
|
app_name_pretty: Google Chrome
|
|
app_url: "https://dl.google.com/chrome/mac/stable/GGRO/googlechrome.dmg"
|
|
installer_type: app
|
|
install_method: dmg
|
|
mount_path: /Volumes/Google\ Chrome/
|
|
creates: /Applications/Google\ Chrome.app
|
|
downloads: ~/.ansible-downloads/
|
|
|
|
tasks:
|
|
- include: ../install/{{ install_method }}.yml |