community.general.layman 模块 – 管理 Gentoo 覆盖层
注意
此模块是 community.general 集合 (版本 10.1.0) 的一部分。
如果您正在使用 ansible
包,则可能已安装此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.general
。您需要其他要求才能使用此模块,有关详细信息,请参阅 要求。
要在剧本中使用它,请指定:community.general.layman
。
概要
使用 Layman 管理 Gentoo Linux 上 Portage 包管理器附加存储库。请注意,在使用此模块之前,必须在受管节点上安装 Layman。
要求
以下是执行此模块的主机所需的条件。
layman python 模块
参数
参数 |
注释 |
---|---|
定义要安装的覆盖层的备用覆盖层列表的 URL。此列表将被获取并保存在 |
|
要安装、同步或卸载的覆盖层 ID。使用“ALL”同步所有已安装的覆盖层(仅当 |
|
是否安装 ( 选项
|
|
如果为 选项
|
属性
属性 |
支持 |
描述 |
---|---|---|
支持:完全支持 |
可以在 |
|
支持:不支持 |
处于 diff 模式时,将返回有关已更改内容(或可能需要在 |
示例
- name: Install the overlay mozilla which is on the central overlays list
community.general.layman:
name: mozilla
- name: Install the overlay cvut from the specified alternative list
community.general.layman:
name: cvut
list_url: 'http://raw.github.com/cvut/gentoo-overlay/master/overlay.xml'
- name: Update (sync) the overlay cvut or install if not installed yet
community.general.layman:
name: cvut
list_url: 'http://raw.github.com/cvut/gentoo-overlay/master/overlay.xml'
state: updated
- name: Update (sync) all of the installed overlays
community.general.layman:
name: ALL
state: updated
- name: Uninstall the overlay cvut
community.general.layman:
name: cvut
state: absent