diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2018-07-05 16:22:30 +0200 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2018-07-05 16:22:30 +0200 |
commit | 5416f8599ffa92b69bb87434dc1175d760760bbe (patch) | |
tree | 307218127ade7099282ac3bef123a2e9590e8f13 /roles/common/tasks/software.yml | |
download | itm-5416f8599ffa92b69bb87434dc1175d760760bbe.tar.gz itm-5416f8599ffa92b69bb87434dc1175d760760bbe.tar.bz2 itm-5416f8599ffa92b69bb87434dc1175d760760bbe.tar.xz itm-5416f8599ffa92b69bb87434dc1175d760760bbe.zip |
Initial import
Diffstat (limited to 'roles/common/tasks/software.yml')
-rw-r--r-- | roles/common/tasks/software.yml | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/roles/common/tasks/software.yml b/roles/common/tasks/software.yml new file mode 100644 index 0000000..c621ef3 --- /dev/null +++ b/roles/common/tasks/software.yml @@ -0,0 +1,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([]) }}" |