mirror of
https://github.com/geerlingguy/mac-dev-playbook
synced 2024-11-29 07:10:19 +00:00
15 lines
No EOL
374 B
YAML
15 lines
No EOL
374 B
YAML
---
|
|
- hosts: all
|
|
connection: local
|
|
vars:
|
|
app_name: VLC
|
|
app_name_pretty: VLC
|
|
app_url: "http://get.videolan.org/vlc/2.1.3/macosx/vlc-2.1.3.dmg"
|
|
installer_type: app
|
|
install_method: dmg
|
|
mount_path: /Volumes/vlc-2.1.3/
|
|
downloads: ~/.ansible-downloads/
|
|
creates: /Applications/VLC.app
|
|
|
|
tasks:
|
|
- include: ../install/{{ install_method }}.yml |