community.general.opkg module – Package manager for OpenWrt
Note
This module is part of the community.general collection (version 5.8.3).
You might already have this collection installed if you are using the ansible
package.
It is not included in ansible-core
.
To check whether it is installed, run ansible-galaxy collection list
.
To install it, use: ansible-galaxy collection install community.general
.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: community.general.opkg
.
Synopsis
Manages OpenWrt packages
Requirements
The below requirements are needed on the host that executes this module.
opkg
python
Parameters
Parameter |
Comments |
---|---|
The Choices:
|
|
Name of package(s) to install/remove. |
|
State of the package. Choices:
|
|
Update the package DB first. Choices:
|
Examples
- name: Install foo
community.general.opkg:
name: foo
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
Collection links
Issue Tracker Repository (Sources) Submit a bug report Request a feature Communication