community.general.opkg 模块 – OpenWrt 和基于 Openembedded/Yocto 的 Linux 发行版的软件包管理器
注意
此模块是 community.general 集合 (版本 10.1.0) 的一部分。
如果您正在使用 ansible
包,则可能已经安装了此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.general
。您需要其他需求才能使用此模块,有关详细信息,请参阅 需求。
要在剧本中使用它,请指定:community.general.opkg
。
概要
管理 OpenWrt 和基于 Openembedded/Yocto 的 Linux 发行版的 ipk 包
需求
执行此模块的主机需要以下需求。
opkg
python
参数
参数 |
注释 |
---|---|
|
|
使用的 状态 选项
|
|
要安装/删除的软件包名称。
|
|
软件包的状态。 选项
|
|
首先更新软件包数据库。 选项
|
属性
属性 |
支持 |
描述 |
---|---|---|
支持:不支持 |
可以在 |
|
支持:不支持 |
在差异模式下,将返回有关已更改内容(或可能需要在 |
示例
- name: Install foo
community.general.opkg:
name: foo
state: present
- name: Install foo in version 1.2 (opkg>=0.3.2 on Yocto based Linux distributions)
community.general.opkg:
name: foo=1.2
state: present
- name: Update cache and install foo
community.general.opkg:
name: foo
state: present
update_cache: true
- name: Remove foo
community.general.opkg:
name: foo
state: absent
- name: Remove foo and bar
community.general.opkg:
name:
- foo
- bar
state: absent
- name: Install foo using overwrite option forcibly
community.general.opkg:
name: foo
state: present
force: overwrite
返回值
公共返回值已记录在 此处,以下是此模块独有的字段
键 |
描述 |
---|---|
opkg 的版本。 返回:始终 示例: |