Files
toallab-automation/t
2018-09-25 13:52:00 -04:00

14 lines
235 B
Plaintext

---
- hosts: web
name: Install the apache web service
become: yes
tasks:
- name: install apache
yum:
name: httpd
state: present
- name: start httpd
service:
name: httpd
state: started