community.general.dnf_config_manager 模块 – 使用 config-manager 启用或禁用 dnf 仓库

注意

此模块是 community.general 集合(版本 10.1.0)的一部分。

如果您正在使用 ansible 包,您可能已经安装了此集合。它不包含在 ansible-core 中。要检查是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用:ansible-galaxy collection install community.general。您需要满足更多要求才能使用此模块,请参阅 要求 了解详细信息。

要在 playbook 中使用它,请指定:community.general.dnf_config_manager

community.general 8.2.0 新增功能

概要

  • 此模块使用 dnf config-manager 子命令启用或禁用仓库。

要求

以下是在执行此模块的主机上需要的要求。

  • dnf

  • dnf-plugins-core

参数

参数

注释

name

list / elements=string

仓库 ID,例如 crb

默认值: []

state

string

仓库应该是 enabled 还是 disabled

选项

  • "enabled" ← (默认)

  • "disabled"

属性

属性

支持

描述

check_mode

支持: 完全

可以在 check_mode 中运行,并在不修改目标的情况下返回更改状态预测。

diff_mode

支持:

当处于 diff 模式时,将返回有关已更改内容(或可能需要在 check_mode 中更改的内容)的详细信息。

参见

另请参阅

ansible.builtin.dnf

使用 dnf 包管理器管理软件包。

ansible.builtin.yum_repository

添加或删除 YUM 仓库。

示例

- name: Ensure the crb repository is enabled
  community.general.dnf_config_manager:
    name: crb
    state: enabled

- name: Ensure the appstream and zfs repositories are disabled
  community.general.dnf_config_manager:
    name:
      - appstream
      - zfs
    state: disabled

返回值

常见的返回值记录在 此处,以下是此模块独有的字段

描述

changed_repos

list / elements=string

已更改的仓库。

返回:成功

示例: ["crb"]

repo_states_post

dictionary

采取行动后仓库的状态。

返回:成功

示例: {"disabled": ["appstream-debuginfo", "appstream-source", "baseos-debuginfo", "baseos-source", "crb-debug", "crb-source"], "enabled": ["appstream", "baseos", "crb"]}

disabled

list / elements=string

已禁用的仓库 ID。

返回:成功

enabled

list / elements=string

已启用的仓库 ID。

返回:成功

repo_states_pre

dictionary

采取行动之前的仓库 ID。

返回:成功

示例: {"disabled": ["appstream-debuginfo", "appstream-source", "baseos-debuginfo", "baseos-source", "crb-debug", "crb-source"], "enabled": ["appstream", "baseos", "crb"]}

disabled

list / elements=string

已禁用的仓库 ID。

返回:成功

enabled

list / elements=string

已启用的仓库 ID。

返回:成功

作者

  • Andrew Hyatt (@ahyattdev)