community.general.homebrew 模块 – Homebrew 的软件包管理器
注意
此模块是 community.general 集合(版本 10.1.0)的一部分。
如果您正在使用 ansible
包,您可能已经安装了这个集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.general
。您需要其他要求才能使用此模块,有关详细信息,请参阅要求。
要在 playbook 中使用它,请指定:community.general.homebrew
。
概要
管理 Homebrew 软件包
要求
执行此模块的主机上需要以下要求。
homebrew 必须已安装在目标系统上
参数
参数 |
注释 |
---|---|
强制将软件包视为 formula(等同于 要安装 cask,请使用 community.general.homebrew_cask 模块。 选择
|
|
安装软件包的选项标志。 |
|
要安装/删除的软件包名称列表。 |
|
一个以 默认值: |
|
软件包的状态。 选择
|
|
首先更新 Homebrew 本身。 选择
|
|
升级所有 Homebrew 软件包。 选择
|
|
升级的选项标志。 |
属性
属性 |
支持 |
描述 |
---|---|---|
支持: 完整 |
可以在 |
|
支持: 无 |
在差异模式下,将返回有关已更改(或可能需要在 |
注释
注意
当与
loop:
一起使用时,每个软件包都将单独处理,直接将列表传递给name
选项会更有效。
示例
# Install formula foo with 'brew' in default path
- community.general.homebrew:
name: foo
state: present
# Install formula foo with 'brew' in alternate path (/my/other/location/bin)
- community.general.homebrew:
name: foo
path: /my/other/location/bin
state: present
# Update homebrew first and install formula foo with 'brew' in default path
- community.general.homebrew:
name: foo
state: present
update_homebrew: true
# Update homebrew first and upgrade formula foo to latest available with 'brew' in default path
- community.general.homebrew:
name: foo
state: latest
update_homebrew: true
# Update homebrew and upgrade all packages
- community.general.homebrew:
update_homebrew: true
upgrade_all: true
# Miscellaneous other examples
- community.general.homebrew:
name: foo
state: head
- community.general.homebrew:
name: foo
state: linked
- community.general.homebrew:
name: foo
state: absent
- community.general.homebrew:
name: foo,bar
state: absent
- community.general.homebrew:
name: foo
state: present
install_options: with-baz,enable-debug
- name: Install formula foo with 'brew' from cask
community.general.homebrew:
name: homebrew/cask/foo
state: present
- name: Use ignore-pinned option while upgrading all
community.general.homebrew:
upgrade_all: true
upgrade_options: ignore-pinned
- name: Force installing a formula whose name is also a cask name
community.general.homebrew:
name: ambiguous_formula
state: present
force_formula: true
返回值
常见的返回值记录在此处,以下是此模块特有的字段
键 |
描述 |
---|---|
模块运行后更改的软件包名称列表 返回: 成功 示例: |
|
缓存是否已更新 返回: 总是 示例: |
|
模块运行后未更改的软件包名称列表 返回: 成功 示例: |