community.general.pkg5 – Manages packages with the Solaris 11 Image Packaging System¶
Note
This plugin is part of the community.general collection (version 2.5.1).
To install it use: ansible-galaxy collection install community.general
.
To use it in a playbook, specify: community.general.pkg5
.
Parameters¶
Notes¶
Note
The naming of IPS packages is explained at http://www.oracle.com/technetwork/articles/servers-storage-admin/ips-package-versioning-2232906.html.
Examples¶
- name: Install Vim
community.general.pkg5:
name: editor/vim
- name: Install Vim without refreshing publishers
community.general.pkg5:
name: editor/vim
refresh: no
- name: Remove finger daemon
community.general.pkg5:
name: service/network/finger
state: absent
- name: Install several packages at once
community.general.pkg5:
name:
- /file/gnu-findutils
- /text/gnu-grep
Authors¶
Peter Oliver (@mavit)