This commit is contained in:
2023-06-12 15:41:01 +02:00
parent 491cae3f71
commit 60e8801a73

View File

@@ -15,3 +15,14 @@
ansible.builtin.package:
name: "{{ package }}"
state: present
- name: Enable httpd service
ansible.builtin.systemd:
name: httpd
state: started
enabled: true
register: httpd_status
- name: Show Status
ansible.builtin.debug:
var: httpd_status