Files
courses/ansible-course/challenge3/web/tasks/main.yml
T
2025-05-20 11:57:43 -04:00

8 lines
117 B
YAML

---
# tasks file for web
- name: Install Apache
yum:
name: httpd
state: installed
notify:
- Start Web