community.general.rpm_ostree_pkg module – Install or uninstall overlay additional packages
Note
This module is part of the community.general collection (version 11.3.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
.
To use it in a playbook, specify: community.general.rpm_ostree_pkg
.
New in community.general 2.0.0
Synopsis
Install or uninstall overlay additional packages using
rpm-ostree
command.
Parameters
Parameter |
Comments |
---|---|
Adds the options Option is ignored when For more information, please see https://coreos.github.io/rpm-ostree/apply-live/. Choices:
|
|
Name of overlay package to install or remove. |
|
State of the overlay package.
Choices:
|
Attributes
Attribute |
Support |
Description |
---|---|---|
Support: none |
Can run in |
|
Support: none |
Returns details on what has changed (or possibly needs changing in |
Examples
- name: Install overlay package
community.general.rpm_ostree_pkg:
name: nfs-utils
state: present
- name: Remove overlay package
community.general.rpm_ostree_pkg:
name: nfs-utils
state: absent
- name: Apply the overlay package live
community.general.rpm_ostree_pkg:
name: nfs-utils
state: present
apply_live: true
# In case a different transaction is currently running the module would fail.
# Adding a delay can help mitigate this problem:
- name: Install overlay package
community.general.rpm_ostree_pkg:
name: nfs-utils
state: present
register: rpm_ostree_pkg
until: rpm_ostree_pkg is not failed
retries: 10
delay: 30
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
Action performed. Returned: always Sample: |
|
Full command used for performed action. Returned: always Sample: |
|
Determine if machine needs a reboot to apply current changes. Returned: success Sample: |
|
A list of packages specified. Returned: always Sample: |