18 lines
269 B
YAML
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
|