summaryrefslogtreecommitdiffstats
path: root/roles/common/tasks/software.yml
blob: c621ef33c9ba111873b9138b2dc6744bff5bece0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
- name: Install various ansible requirements
  package: name={{item}} state=present
  with_items: 
    - yum-plugin-versionlock
    - libselinux-python
    - libsemanage-python
    - yamllint
    - pyOpenSSL
    - python-passlib
    - python2-ruamel-yaml
    - python2-jmespath
    - python-ipaddress
    - iptables-services
    - PyYAML
    - python-rhsm-certificates

- name: Install various administrative tools
  package: name={{item}} state=present
  with_items: 
    - mc
    - telnet
    - lsof
    - strace
    - bzr
    - git
    - pciutils

- name: Ensure all extra packages are installed
  package: name={{item}} state=present
  with_items: "{{ extra_packages | default([]) }}"