paulbsd-salt/states/systemd/module.sls
Paul f380ffb4a0
All checks were successful
continuous-integration/drone/push Build is passing
updated systemd state
2025-03-19 20:47:33 +01:00

25 lines
681 B
Plaintext

---
{%- from "systemd/map.jinja" import systemd with context %}
{% for module, settings in systemd.moduleconfig.items() %}
systemd-confdir-{{ module }}:
file.directory:
- name: {{ systemd.confdir }}/{{ module }}.conf.d/
systemd-configfile-{{ module }}:
file.managed:
- name: {{ systemd.confdir }}/{{ module }}.conf.d/custom.conf
- source: salt://systemd/templates/systemd_custom.conf.j2
- template: jinja
- user: root
- group: root
- mode: 0644
- context:
settings: {{ settings }}
systemd-service-{{ module }}:
service.running:
- name: systemd-{{ module }}
- watch:
- file: systemd-configfile-{{ module }}
{% endfor %}