homebrew - Package manager for Homebrew

Author:Andrew Dunham and Daniel Jaouen

Synopsis

New in version 1.1.

Manages Homebrew packages

Options

parameter required default choices comments
install_options no
    options flags to install a package (added in Ansible 1.4)
    name yes
      name of package to install/remove
      state no present
      • head
      • latest
      • present
      • absent
      • linked
      • unlinked
      state of the package
      update_homebrew no no
      • yes
      • no
      update homebrew itself first

      Examples


      - homebrew: name=foo state=present
      - homebrew: name=foo state=present update_homebrew=yes
      - homebrew: name=foo state=latest update_homebrew=yes
      - homebrew: update_homebrew=yes upgrade=yes
      - homebrew: name=foo state=head
      - homebrew: name=foo state=linked
      - homebrew: name=foo state=absent
      - homebrew: name=foo,bar state=absent
      - homebrew: name=foo state=present install_options=with-baz,enable-debug
      

      Table Of Contents

      Previous topic

      gem - Manage Ruby gems

      Next topic

      homebrew_cask - Install/uninstall homebrew casks.