New in version 1.5.
parameter | required | default | choices | comments |
---|---|---|---|---|
pkg | yes | name of package to install, upgrade or remove. | ||
state | no | present |
| Indicates the desired package state |
update_cache | no |
| update the package database first apt-get update . |
# install package foo - apt_rpm: pkg: foo state: present # remove package foo - apt_rpm: pkg: foo state: absent # description: remove packages foo and bar - apt_rpm: pkg: foo,bar state: absent # description: update the package database and install bar (bar will be the updated if a newer version exists) - apt_rpm: name: bar state: present update_cache: yes
This module is flagged as preview which means that it is not guaranteed to have a backwards compatible interface.
For help in developing on modules, should you be so inclined, please read Community Information & Contributing, Testing Ansible and Developing Modules.
© 2012–2017 Michael DeHaan
© 2017 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/latest/apt_rpm_module.html