salt.modules.brew

Members

install

salt.modules.brew.install(pkgs)

Install the passed package(s) with brew install

pkgs
The names of the packages to be installed

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_pkgs

salt.modules.brew.list_pkgs(*args)

List the packages currently installed in a dict:

{'<package_name>': '<version>'}

CLI Example:

salt '*' pkg.list_pkgs

list_upgrades

salt.modules.brew.list_upgrades()

Check whether or not an upgrade is available for all packages

CLI Example:

salt '*' pkg.list_upgrades

remove

salt.modules.brew.remove(pkgs)

Removes packages with brew uninstall

Return a list containing the removed packages:

CLI Example:

salt '*' pkg.remove <package,package,package>

upgrade_available

salt.modules.brew.upgrade_available(pkg)

Check whether or not an upgrade is available for a given package

CLI Example:

salt '*' pkg.upgrade_available <package name>

version

salt.modules.brew.version(name)

Returns a version if the package is installed, else returns an empty string

CLI Example:

salt '*' pkg.version <package name>

Parent topic

Table Of Contents

Previous topic

salt.modules.archive

Next topic

salt.modules.butterkvm