dotfiles/ansible/scripts/configure_systemd.yml

8 lines
203 B
YAML
Raw Normal View History

2024-06-06 03:21:06 -05:00
- name: Enable Systemd Services
ansible.builtin.systemd_service:
name: "{{ item }}"
state: started
enabled: true
with_items: "{{ systemd_service }}"
when: systemd_service is defined