This commit is contained in:
Michael Grote 2024-04-03 11:00:29 +02:00
parent f5308176fe
commit 517f9babcc

View file

@ -4,6 +4,17 @@
deb: "{{ lldap_package_url }}" deb: "{{ lldap_package_url }}"
notify: Ensure services are enabled and started notify: Ensure services are enabled and started
- name: Ensure needed directories exist
ansible.builtin.file:
path: "{{ item }}"
state: directory
owner: lldap
group: lldap
loop:
- /usr/share/lldap/app/static/fonts
- /usr/share/lldap/app/static
- /usr/share/lldap/app/pkg
- name: Ensure config is templated - name: Ensure config is templated
ansible.builtin.template: ansible.builtin.template:
src: lldap_config.toml.j2 src: lldap_config.toml.j2