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
|
cache_valid_time: 43200
|
||||||
when: ansible_distribution == 'Debian'
|
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
|
- name: Install extra packages
|
||||||
become: true
|
become: true
|
||||||
package:
|
package:
|
||||||
|
|
|
@ -19,7 +19,6 @@ base_packages:
|
||||||
- bash-completion
|
- bash-completion
|
||||||
- unzip
|
- unzip
|
||||||
- asciinema
|
- asciinema
|
||||||
- ranger
|
|
||||||
- net-tools
|
- net-tools
|
||||||
- links
|
- links
|
||||||
|
|
||||||
|
@ -31,14 +30,18 @@ debian_packages:
|
||||||
- python-apt
|
- python-apt
|
||||||
- python3-apt
|
- python3-apt
|
||||||
- fio
|
- fio
|
||||||
|
|
||||||
|
packages_for_all_except_rhel:
|
||||||
|
- ranger
|
||||||
- python3-pip
|
- python3-pip
|
||||||
- python3
|
- python3
|
||||||
|
|
||||||
fedora_packages:
|
fedora_packages:
|
||||||
- mtr
|
- mtr
|
||||||
|
- libselinux-python
|
||||||
|
- ranger
|
||||||
- python3-pip
|
- python3-pip
|
||||||
- python3
|
- python3
|
||||||
- libselinux-python
|
|
||||||
|
|
||||||
playbook_version_number: 104
|
playbook_version_number: 105
|
||||||
playbook_version_path: '/etc/ansible-version/base-packages_ffbsee_github.version'
|
playbook_version_path: '/etc/ansible-version/base-packages_ffbsee_github.version'
|
||||||
|
|
Loading…
Reference in a new issue