From 3a37131ce06fc0718be4f17743df71e62b6ad3cc Mon Sep 17 00:00:00 2001 From: luwenpeng Date: Mon, 4 Jul 2022 10:10:52 +0800 Subject: [PATCH] =?UTF-8?q?TSG-10960=20K3S=E5=AE=B9=E5=99=A8=E4=B8=AD?= =?UTF-8?q?=E5=AE=89=E8=A3=85io=5Furing=E5=92=8C=E5=B8=B8=E7=94=A8?= =?UTF-8?q?=E8=B0=83=E8=AF=95=E5=B7=A5=E5=85=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../container-tools-install/tasks/main.yml | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/ansible/roles/container-tools-install/tasks/main.yml b/ansible/roles/container-tools-install/tasks/main.yml index 0cc75d2f..c806cd11 100644 --- a/ansible/roles/container-tools-install/tasks/main.yml +++ b/ansible/roles/container-tools-install/tasks/main.yml @@ -74,3 +74,27 @@ name: ipmitool conf_file: "{{ rpm_repo_config_path }}" state: present + +- 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 + +- name: "install perf" + yum: + name: perf + conf_file: "{{ rpm_repo_config_path }}" + state: present \ No newline at end of file