mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 09:38:39 +08:00
Signed-off-by: john-h-luo <jiehua.luo@zilliz.com> Signed-off-by: john-h-luo <jiehua.luo@zilliz.com>
24 lines
545 B
YAML
24 lines
545 B
YAML
---
|
|
- name: Install Packages
|
|
yum: name={{ item }} state=latest update_cache=yes
|
|
with_items:
|
|
- ntp
|
|
- tcpdump
|
|
- python3
|
|
- wget
|
|
- openssl
|
|
- curl
|
|
- python3-pip
|
|
when: ansible_distribution == 'CentOS' or ansible_distribution == 'Red Hat Enterprise Linux'
|
|
|
|
- name: Install Packages
|
|
apt: name={{ item }} state=latest update_cache=yes
|
|
with_items:
|
|
- ntp
|
|
- python3
|
|
- tcpdump
|
|
- wget
|
|
- openssl
|
|
- curl
|
|
- python3-pip
|
|
when: ansible_distribution == 'Debian' or ansible_distribution == 'Ubuntu' |