Note
This plugin is part of the community.general collection.
To install it use: ansible-galaxy collection install community.general.
To use it in a playbook, specify: community.general.pkgin.
pkgsrc. (Home: http://pkgin.net/)| Parameter | Choices/Defaults | Comments |
|---|---|---|
| clean boolean |
| Clean packages cache |
| force boolean |
| Force package reinstall |
| full_upgrade boolean |
| Upgrade all packages to their newer versions |
| name list / elements=string | Name of package to install/remove; multiple names may be given, separated by commas aliases: pkg | |
| state string |
| Intended state of the package |
| update_cache boolean |
| Update repository database. Can be run with other steps or on it's own. |
| upgrade boolean |
| Upgrade main packages to their newer versions |
Note
- name: Install package foo
community.general.pkgin:
name: foo
state: present
- name: Update cache and install foo package
community.general.pkgin:
name: foo
update_cache: yes
- name: Remove package foo
community.general.pkgin:
name: foo
state: absent
- name: Remove packages foo and bar
community.general.pkgin:
name: foo,bar
state: absent
- name: Update repositories as a separate step
community.general.pkgin:
update_cache: yes
- name: Upgrade main packages (equivalent to pkgin upgrade)
community.general.pkgin:
upgrade: yes
- name: Upgrade all packages (equivalent to pkgin full-upgrade)
community.general.pkgin:
full_upgrade: yes
- name: Force-upgrade all packages (equivalent to pkgin -F full-upgrade)
community.general.pkgin:
full_upgrade: yes
force: yes
- name: Clean packages cache (equivalent to pkgin clean)
community.general.pkgin:
clean: yes
© 2012–2018 Michael DeHaan
© 2018–2019 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.10/collections/community/general/pkgin_module.html