community.general.opkg module – Package manager for OpenWrt and Openembedded/Yocto based Linux distributions
Note
This module is part of the community.general collection (version 9.5.0).
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 ipk packages for OpenWrt and Openembedded/Yocto based Linux distributions
Requirements
The below requirements are needed on the host that executes this module.
- opkg
- python
Parameters
Parameter | Comments |
---|---|
executable path added in community.general 7.2.0 | The executable location for |
force string | The Passing Choices:
|
name aliases: pkg list / elements=string / required | Name of package(s) to install/remove.
|
state string | State of the package. Choices:
|
update_cache boolean | Update the package DB first. Choices:
|
Attributes
Attribute | Support | Description |
---|---|---|
check_mode | Support: none | Can run in |
diff_mode | Support: none | Will return details on what has changed (or possibly needs changing in |
Examples
- 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
Collection links
© 2012–2018 Michael DeHaan
© 2018–2024 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/latest/collections/community/general/opkg_module.html