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 的软件包。

参数

参数

注释

name

别名:pkg

字符串 / 必需

要安装/删除的软件包名称

state

字符串

软件包的状态

选项

  • "present" ← (默认)

  • "absent"

use_packages

布尔值

尽可能使用软件包而不是 ports

选项

  • false

  • true ← (默认)

属性

属性

支持

描述

check_mode

支持:不支持

可以在 check_mode 下运行并返回更改状态预测,而无需修改目标。

diff_mode

支持:不支持

在差异模式下,将返回有关已更改内容(或可能需要在 check_mode 中更改的内容)的详细信息。

示例

- 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

作者

  • berenddeboer (@berenddeboer)