community.general.opkg – Package manager for OpenWrt¶
Note
This plugin is part of the community.general collection (version 2.5.1).
To install it use: ansible-galaxy collection install community.general
.
To use it in a playbook, specify: community.general.opkg
.
Parameters¶
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)