community.general.portinstall 模块 – 从 FreeBSD 的 ports 系统安装包
注意
此模块是 community.general 集合 (版本 10.1.0) 的一部分。
如果您正在使用 ansible
包,则可能已经安装了此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用: ansible-galaxy collection install community.general
。
要在 playbook 中使用它,请指定: community.general.portinstall
。
概要
使用“portinstall”管理 FreeBSD 的软件包。
参数
参数 |
注释 |
---|---|
要安装/删除的软件包名称 |
|
软件包的状态 选项
|
|
尽可能使用软件包而不是 ports 选项
|
属性
属性 |
支持 |
描述 |
---|---|---|
支持:不支持 |
可以在 |
|
支持:不支持 |
在差异模式下,将返回有关已更改内容(或可能需要在 |
示例
- name: Install package foo
community.general.portinstall:
name: foo
state: present
- name: Install package security/cyrus-sasl2-saslauthd
community.general.portinstall:
name: security/cyrus-sasl2-saslauthd
state: present
- name: Remove packages foo and bar
community.general.portinstall:
name: foo,bar
state: absent