1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_base.git synced 2024-08-16 14:29:50 +02:00

improve centos packages

This commit is contained in:
Lilian Roller 2019-06-06 14:29:53 +02:00
parent 0cc7c3b793
commit 57ccbfbcc5
No known key found for this signature in database
GPG key ID: 5215C3441797AB2B
2 changed files with 13 additions and 3 deletions

View file

@ -50,6 +50,13 @@
cache_valid_time: 43200
when: ansible_distribution == 'Debian'
- name: install packages for everyone except centos/rhel
become: true
package:
name: "{{ packages_for_all_except_rhel }}"
state: present
when: ansible_os_family != 'RedHat'
- name: Install extra packages
become: true
package:

View file

@ -19,7 +19,6 @@ base_packages:
- bash-completion
- unzip
- asciinema
- ranger
- net-tools
- links
@ -31,14 +30,18 @@ debian_packages:
- python-apt
- python3-apt
- fio
packages_for_all_except_rhel:
- ranger
- python3-pip
- python3
fedora_packages:
- mtr
- libselinux-python
- ranger
- python3-pip
- python3
- libselinux-python
playbook_version_number: 104
playbook_version_number: 105
playbook_version_path: '/etc/ansible-version/base-packages_ffbsee_github.version'