Working with Ansible {Part-12}
Installing Apache through Ansible
Let's install the Apache through YAML using following code
---
- name: Installing Apache
hosts: Node-1
tasks:
- name: task1 Installing Apache
yum:
name: httpd
state: latest
- name: ...
devopswala.hashnode.dev3 min read