Members
Install the passed package(s) with brew install
Return a dict containing the new package names and versions:
{'<package>': {'old': '<old-version>',
'new': '<new-version>']}
CLI Example:
salt '*' pkg.install 'package package package'
List the packages currently installed in a dict:
{'<package_name>': '<version>'}
CLI Example:
salt '*' pkg.list_pkgs
Check whether or not an upgrade is available for all packages
CLI Example:
salt '*' pkg.list_upgrades
Removes packages with brew uninstall
Return a list containing the removed packages:
CLI Example:
salt '*' pkg.remove <package,package,package>