This commit is contained in:
2024-06-06 03:21:06 -05:00
parent 2fad761a31
commit efbbd5ba86
4 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
- name: Enable Systemd Services
ansible.builtin.systemd_service:
name: "{{ item }}"
state: started
enabled: true
with_items: "{{ systemd_service }}"
when: systemd_service is defined