Ansible Role apps¶
This role manages a list of applications using the OS’s package manager.
Optional Role Variables¶
apps__apps__host_var / apps__apps__group_var
List of apps to remove or to deploy.
Type: List of dictionaries.
Default:
[]Subkeys:
name:Mandatory. Name of the application package.
Type: String.
state:Optional. Possible options:
present(default),absent. You can use other states likelatestONLY if they are supported by the underlying package module(s) executed.Type: String.
Default:
'present'
Example:
# optional
apps__apps__host_var:
- name: 'svn'
state: 'absent'
- name: 'git'