2022-11-19 14:29:29 +00:00
|
|
|
- name: "update all"
|
|
|
|
|
yum:
|
|
|
|
|
name: '*'
|
|
|
|
|
conf_file: "{{ rpm_repo_config_path }}"
|
|
|
|
|
state: latest
|
|
|
|
|
|
|
|
|
|
- name: "hotfix for dnf broken"
|
|
|
|
|
shell:
|
|
|
|
|
cmd: "dnf upgrade --refresh rpm glibc && rm /var/lib/rpm/.rpm.lock && dnf upgrade dnf"
|
|
|
|
|
|
2022-06-09 18:19:03 +08:00
|
|
|
- name: "install tcpdump"
|
|
|
|
|
yum:
|
|
|
|
|
name: tcpdump
|
|
|
|
|
conf_file: "{{ rpm_repo_config_path }}"
|
|
|
|
|
state: present
|
|
|
|
|
|
|
|
|
|
- name: "install numactl-libs"
|
|
|
|
|
yum:
|
|
|
|
|
name: numactl-libs
|
|
|
|
|
conf_file: "{{ rpm_repo_config_path }}"
|
|
|
|
|
state: present
|
|
|
|
|
|
|
|
|
|
- name: "install iproute"
|
|
|
|
|
yum:
|
|
|
|
|
name: iproute
|
|
|
|
|
conf_file: "{{ rpm_repo_config_path }}"
|
|
|
|
|
state: present
|
|
|
|
|
|
|
|
|
|
- name: "install iptables"
|
|
|
|
|
yum:
|
|
|
|
|
name: iptables
|
|
|
|
|
conf_file: "{{ rpm_repo_config_path }}"
|
|
|
|
|
state: present
|
|
|
|
|
|
|
|
|
|
- name: "install procps"
|
|
|
|
|
yum:
|
|
|
|
|
name: procps
|
|
|
|
|
conf_file: "{{ rpm_repo_config_path }}"
|
|
|
|
|
state: present
|
|
|
|
|
|
|
|
|
|
- name: "install net-tools"
|
|
|
|
|
yum:
|
|
|
|
|
name: net-tools
|
|
|
|
|
conf_file: "{{ rpm_repo_config_path }}"
|
|
|
|
|
state: present
|
|
|
|
|
|
|
|
|
|
- name: "install ethtool"
|
|
|
|
|
yum:
|
|
|
|
|
name: ethtool
|
|
|
|
|
conf_file: "{{ rpm_repo_config_path }}"
|
|
|
|
|
state: present
|
|
|
|
|
|
|
|
|
|
- name: "install gdb"
|
|
|
|
|
yum:
|
|
|
|
|
name: gdb
|
|
|
|
|
conf_file: "{{ rpm_repo_config_path }}"
|
|
|
|
|
state: present
|
|
|
|
|
|
|
|
|
|
- name: "install ipmitool"
|
|
|
|
|
yum:
|
|
|
|
|
name: ipmitool
|
|
|
|
|
conf_file: "{{ rpm_repo_config_path }}"
|
|
|
|
|
state: present
|
2022-07-04 10:10:52 +08:00
|
|
|
|
|
|
|
|
- name: "install liburing"
|
|
|
|
|
yum:
|
|
|
|
|
name: liburing
|
|
|
|
|
conf_file: "{{ rpm_repo_config_path }}"
|
|
|
|
|
state: present
|
|
|
|
|
|
|
|
|
|
- name: "install vim"
|
|
|
|
|
yum:
|
|
|
|
|
name: vim
|
|
|
|
|
conf_file: "{{ rpm_repo_config_path }}"
|
|
|
|
|
state: present
|
|
|
|
|
|
|
|
|
|
- name: "install lrzsz"
|
|
|
|
|
yum:
|
|
|
|
|
name: lrzsz
|
|
|
|
|
conf_file: "{{ rpm_repo_config_path }}"
|
|
|
|
|
state: present
|
|
|
|
|
|
2022-11-19 14:29:29 +00:00
|
|
|
- name: "install libnsl"
|
|
|
|
|
yum:
|
|
|
|
|
name: libnsl
|
|
|
|
|
conf_file: "{{ rpm_repo_config_path }}"
|
|
|
|
|
state: present
|
|
|
|
|
|
2022-07-04 10:10:52 +08:00
|
|
|
- name: "install perf"
|
|
|
|
|
yum:
|
|
|
|
|
name: perf
|
|
|
|
|
conf_file: "{{ rpm_repo_config_path }}"
|
2022-11-18 06:43:14 -05:00
|
|
|
state: present
|
2022-11-19 14:29:29 +00:00
|
|
|
releasever: 8.6
|
2022-11-18 06:43:14 -05:00
|
|
|
|
2023-01-31 15:01:46 +08:00
|
|
|
- name: "install libnsl"
|
|
|
|
|
yum:
|
|
|
|
|
name: jq
|
|
|
|
|
conf_file: "{{ rpm_repo_config_path }}"
|
|
|
|
|
state: present
|
|
|
|
|
|
2023-05-22 18:37:37 +08:00
|
|
|
- name: "install perl"
|
|
|
|
|
yum:
|
|
|
|
|
name: perl
|
|
|
|
|
conf_file: "{{ rpm_repo_config_path }}"
|
|
|
|
|
state: present
|
|
|
|
|
|
|
|
|
|
- name: "install perl-open"
|
|
|
|
|
yum:
|
|
|
|
|
name: perl-open
|
|
|
|
|
conf_file: "{{ rpm_repo_config_path }}"
|
|
|
|
|
state: present
|
2023-03-02 16:55:10 +08:00
|
|
|
|
2023-05-30 11:40:17 +08:00
|
|
|
- name: "install valgrind"
|
|
|
|
|
yum:
|
|
|
|
|
name: valgrind
|
|
|
|
|
conf_file: "{{ rpm_repo_config_path }}"
|
|
|
|
|
state: present
|
2023-06-20 16:43:07 +08:00
|
|
|
|
|
|
|
|
- name: "install python2"
|
|
|
|
|
yum:
|
|
|
|
|
name: python2
|
|
|
|
|
conf_file: "{{ rpm_repo_config_path }}"
|
|
|
|
|
state: present
|
|
|
|
|
|
|
|
|
|
- name: "Install python module"
|
|
|
|
|
shell: pip2 install PrettyTable==0.7.2
|