---
- name: install httpd
hosts: web
become: true
gather_facts: false
tasks:
dnf:
name:
- httpd-2.4.58
- name: start apache
systemd:
name: httpd
state: restarted
enabled: yes