.. _ansible.posix.rpm_ostree_upgrade_module: ******************************** ansible.posix.rpm_ostree_upgrade ******************************** **Manage rpm-ostree upgrade transactions** Version added: 1.5.0 .. contents:: :local: :depth: 1 Synopsis -------- - Manage an rpm-ostree upgrade transactions. Requirements ------------ The below requirements are needed on the host that executes this module. - rpm-ostree Parameters ---------- .. raw:: html
Parameter Choices/Defaults Comments
allow_downgrade
boolean
    Choices:
  • no ←
  • yes
Allow for the upgrade to be a chronologically older tree.
cache_only
boolean
    Choices:
  • no ←
  • yes
Perform the transaction using only pre-cached data, do not download.
os
string
Default:
""
The OSNAME upon which to operate.
peer
boolean
    Choices:
  • no ←
  • yes
Force peer-to-peer connection instead of using a system message bus.

Examples -------- .. code-block:: yaml - name: Upgrade the rpm-ostree image without options, accept all defaults ansible.posix.rpm_ostree_upgrade: - name: Upgrade the rpm-ostree image allowing downgrades ansible.posix.rpm_ostree_upgrade: allow_downgrade: true Return Values ------------- Common return values are documented `here `_, the following are the fields unique to this module: .. raw:: html
Key Returned Description
msg
string
always
The command standard output

Sample:
No upgrade available.


Status ------ Authors ~~~~~~~ - Adam Miller (@maxamillion)