Playbook to install httpd package
Playbook to install and start the httpd service
--- - hosts: ansiblenode2 become: yes tasks: - name: install httpd yum: name: httpd state: latest - name: start and enable httpd service: name: httpd state: started enabled: yes
Share This Post:
more news from the blog