Parameter |
Choices/Defaults |
Comments |
---|---|---|
clean
(added in 2.1) |
|
Clean packages cache
|
force
(added in 2.1) |
|
Force package reinstall
|
full_upgrade
(added in 2.1) |
|
Upgrade all packages to their newer versions
|
name
|
|
Name of package to install/remove;
multiple names may be given, separated by commas
|
state
|
|
Intended state of the package
|
update_cache
(added in 2.1) |
|
Update repository database. Can be run with other steps or on it's own.
|
upgrade
(added in 2.1) |
|
Upgrade main packages to their newer versions
|
Note
# install package foo
- pkgin:
name: foo
state: present
# Update database and install "foo" package
- pkgin:
name: foo
update_cache: yes
# remove package foo
- pkgin:
name: foo
state: absent
# remove packages foo and bar
- pkgin:
name: foo,bar
state: absent
# Update repositories as a separate step
- pkgin:
update_cache: yes
# Upgrade main packages (equivalent to C(pkgin upgrade))
- pkgin:
upgrade: yes
# Upgrade all packages (equivalent to C(pkgin full-upgrade))
- pkgin:
full_upgrade: yes
# Force-upgrade all packages (equivalent to C(pkgin -F full-upgrade))
- pkgin:
full_upgrade: yes
force: yes
# clean packages cache (equivalent to C(pkgin clean))
- pkgin:
clean: yes
This module is flagged as preview which means that it is not guaranteed to have a backwards compatible interface.
Hint
If you notice any issues in this documentation you can edit this document to improve it.