community.general.urpmi – Urpmi manager

Note

This plugin is part of the community.general collection (version 3.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.urpmi.

Synopsis

  • Manages packages with urpmi (such as for Mageia or Mandriva)

Parameters

Parameter

Comments

force

boolean

Assume “yes” is the answer to any question urpmi has to ask. Corresponds to the --force option for urpmi.

Choices:

  • no

  • yes ← (default)

name

aliases: package, pkg

list / elements=string / required

A list of package names to install, upgrade or remove.

no_recommends

aliases: no-recommends

boolean

Corresponds to the --no-recommends option for urpmi.

Alias no-recommends has been deprecated and will be removed in community.general 5.0.0.

Choices:

  • no

  • yes ← (default)

root

aliases: installroot

string

Specifies an alternative install root, relative to which all packages will be installed. Corresponds to the --root option for urpmi.

state

string

Indicates the desired package state.

Choices:

  • absent

  • present ← (default)

  • installed

  • removed

update_cache

aliases: update-cache

boolean

Update the package database first urpmi.update -a.

Alias update-cache has been deprecated and will be removed in community.general 5.0.0.

Choices:

  • no ← (default)

  • yes

Examples

- name: Install package foo
  community.general.urpmi:
    pkg: foo
    state: present

- name: Remove package foo
  community.general.urpmi:
    pkg: foo
    state: absent

- name: Remove packages foo and bar
  community.general.urpmi:
    pkg: foo,bar
    state: absent

- name: Update the package database (urpmi.update -a -q) and install bar (bar will be the updated if a newer version exists)
- community.general.urpmi:
    name: bar
    state: present
    update_cache: yes

Authors

  • Philippe Makowski (@pmakowski)