ansible-practice/apache-inventaire.conf.tag.yml
2025-04-11 07:52:16 +00:00

21 lines
510 B
YAML

---
- name: "Apache installation"
hosts: 8-1.practice-k8s.cloud
tasks:
- name: "Apache package installation"
yum:
name: "httpd"
state: "present"
- name: "Apache configuration"
template:
src: "inventory.conf.j2"
dest: "/etc/httpd/conf.d/inventory.conf"
owner: "apache"
group: "apache"
- name: "Start apache service"
tags: restart
service:
name: "httpd"
state: "started"
enabled: yes