mirror of
https://github.com/roles-ansible/ansible_role_packages.git
synced 2024-08-16 10:19:51 +02:00
improve centos packages
This commit is contained in:
parent
0cc7c3b793
commit
57ccbfbcc5
2 changed files with 13 additions and 3 deletions
|
@ -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:
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue