ansible安装软件包租
时间: 2023-11-17 15:51:06 浏览: 294
Ansible安装软件包有多种方式,其中一种是使用yum命令。你可以通过在Ansible playbook中使用yum模块来安装软件包。例如,要安装Apache软件包,可以使用以下任务:
```
- name: 安装Apache软件包
yum:
name: httpd
state: present
```
这将使用yum命令安装名为httpd的Apache软件包。state参数设置为present表示确保软件包已安装。
另一种安装软件包的方式是使用dnf模块。dnf是yum的后续版本,可以在大多数现代Linux发行版中使用。以下是使用dnf安装Apache软件包的示例任务:
```
- name: 安装Apache软件包
dnf:
name: httpd
state: present
```
以上两种方法都可以在Ansible中安装软件包。你可以根据需要选择适合你的系统的方法。
阅读全文