Name: | Rishabh Das |
---|---|
Contact: | rishabh5290@gmail.com |
Workplace: | Red Hat, Pune |
--- - name: install and start httpd service hosts: webservers user: cloud-user sudo: yes tasks: - name: Install / Check apache is intalled yum: name=httpd state=present - name: Start / Check apache service service: name=httpd state=started