Ran ansible-lint

This commit is contained in:
Sonny Bakker 2025-12-18 15:00:37 +01:00
parent 92f761f4bb
commit 43d470edf3
33 changed files with 343 additions and 317 deletions

View file

@ -1,12 +1,13 @@
---
- name: Create xdg-desktop-portal.service.d directory
ansible.builtin.file:
path: '{{ xdg_config_dir }}/systemd/user/xdg-desktop-portal.service.d'
path: "{{ xdg_config_dir }}/systemd/user/xdg-desktop-portal.service.d"
state: directory
mode: '0755'
mode: "0755"
- name: Copy xdg-desktop-portal.service drop-in
ansible.builtin.template:
src: templates/desktop/xdg-desktop-portal.service.j2
dest: '{{ xdg_config_dir }}/systemd/user/xdg-desktop-portal.service.d/override.conf'
mode: '0755'
dest: "{{ xdg_config_dir }}/systemd/user/xdg-desktop-portal.service.d/override.conf"
mode: "0755"
notify: user daemon-reload