community.general.swdepot – Manage packages with swdepot package manager (HP-UX)¶
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.swdepot
.
Parameters¶
Examples¶
- name: Install a package
community.general.swdepot:
name: unzip-6.0
state: present
depot: 'repository:/path'
- name: Install the latest version of a package
community.general.swdepot:
name: unzip
state: latest
depot: 'repository:/path'
- name: Remove a package
community.general.swdepot:
name: unzip
state: absent
Authors¶
Raul Melo (@melodous)