community.general.mas module – Manage Mac App Store applications with mas-cli
Note
This module is part of the community.general collection (version 7.5.2).
You might already have this collection installed if you are using the ansible
package.
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install community.general
.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: community.general.mas
.
New in community.general 0.2.0
Synopsis
Installs, uninstalls and updates macOS applications from the Mac App Store using the
mas-cli
.
Aliases: packaging.os.mas
Requirements
The below requirements are needed on the host that executes this module.
macOS 10.11+
mas-cli (https://github.com/mas-cli/mas) 1.5.0+ available as
mas
in the bin pathThe Apple ID to use already needs to be signed in to the Mac App Store (check with
mas account
).The feature of “checking if user is signed in” is disabled for anyone using macOS 12.0+.
Users need to sign in via the Mac App Store GUI beforehand for anyone using macOS 12.0+ due to https://github.com/mas-cli/mas/issues/417.
Parameters
Parameter |
Comments |
---|---|
The Mac App Store identifier of the app(s) you want to manage. This can be found by running |
|
Desired state of the app installation. The Choices:
|
|
Upgrade all installed Mac App Store apps. Choices:
|
Attributes
Attribute |
Support |
Description |
---|---|---|
Support: full |
Can run in |
|
Support: none |
Will return details on what has changed (or possibly needs changing in |
Examples
- name: Install Keynote
community.general.mas:
id: 409183694
state: present
- name: Install Divvy with command mas installed in /usr/local/bin
community.general.mas:
id: 413857545
state: present
environment:
PATH: /usr/local/bin:{{ ansible_facts.env.PATH }}
- name: Install a list of apps
community.general.mas:
id:
- 409183694 # Keynote
- 413857545 # Divvy
state: present
- name: Ensure the latest Keynote version is installed
community.general.mas:
id: 409183694
state: latest
- name: Upgrade all installed Mac App Store apps
community.general.mas:
upgrade_all: true
- name: Install specific apps and also upgrade all others
community.general.mas:
id:
- 409183694 # Keynote
- 413857545 # Divvy
state: present
upgrade_all: true
- name: Uninstall Divvy
community.general.mas:
id: 413857545
state: absent
become: true # Uninstallation requires root permissions