Use mas_installed_apps vs mas_installed_app_ids

The `app_ids` flavor is deprecated: https://github.com/geerlingguy/ansible-role-mas/blob/master/defaults/main.yml#L4
This commit is contained in:
Ben Limmer 2017-03-12 15:41:45 -06:00 committed by Ben Limmer
parent 2368429e45
commit fcb39dd9f4
No known key found for this signature in database
GPG key ID: 5F2445310F92F1EA
3 changed files with 8 additions and 8 deletions

View file

@ -33,12 +33,12 @@ You can override any of the defaults configured in `default.config.yml` by creat
- cowsay
- git
- go
mas_installed_app_ids:
- 443987910 # 1Password
- 498486288 # Quick Resizer
- 557168941 # Tweetbot
- 497799835 # Xcode
mas_installed_apps:
- { id: 443987910, name: "1Password" }
- { id: 498486288, name: "Quick Resizer" }
- { id: 557168941, name: "Tweetbot" }
- { id: 497799835, name: "Xcode" }
Any variable can be overridden in `config.yml`; see the supporting roles' documentation for a complete list of available variables.

View file

@ -73,6 +73,6 @@ homebrew_cask_apps:
- virtualbox
# See `geerlingguy.mas` role documentation for usage instructions.
mas_installed_app_ids: []
mas_installed_apps: []
mas_email: ""
mas_password: ""

View file

@ -14,7 +14,7 @@
- geerlingguy.homebrew
- geerlingguy.dotfiles
- name: geerlingguy.mas
when: mas_installed_app_ids
when: mas_installed_apps
tasks:
- include: tasks/ansible-setup.yml