CMDB-Server/ec2-user/ansible/step2_install_httpd.yml

18 lines
269 B
YAML

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