community.general.opkg module – Package manager for OpenWrt
Note
This module is part of the community.general collection (version 4.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
.
To use it in a playbook, specify: community.general.opkg
.
Parameters
Parameter |
Comments |
---|---|
The Choices:
|
|
Name of package(s) to install/remove. |
|
State of the package. Choices:
|
|
Update the package DB first. Alias 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: yes
- 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
Authors
Patrick Pelletier (@skinp)
Collection links
Issue Tracker Repository (Sources) Submit a bug report Request a feature Communication