make sure directories are created

This commit is contained in:
mustard 2025-02-28 00:20:46 +01:00
parent 8d71351c3e
commit 4e9107fa66

View file

@ -58,12 +58,12 @@
mode: '0755'
- name: Make locks dir for dconf
ansible.builtin.file:
path: '../qubes-config/etc/dconf/db/local.d/locks'
path: '/etc/dconf/db/local.d/locks'
state: 'directory'
mode: '0755'
- name: Fix XDG portals
ansible.builtin.file:
path: '../qubes-config/etc/xdg-desktop-portal'
path: '/etc/xdg-desktop-portal'
state: 'directory'
mode: '0755'
@ -133,7 +133,7 @@
- name: Enable hardened_malloc
ansible.builtin.copy:
src: '../qubes-config/etc/ld.so.preload'
src: 'etc/ld.so.preload'
dest: '/etc/ld.so.preload'
mode: '0644'
- name: Enable hardened_malloc for system wide flatpak
@ -142,7 +142,7 @@
shell: 'flatpak override --user --filesystem=host-os:ro --env=LD_PRELOAD=/var/run/host/usr/lib64/libhardened_malloc.so'
- name: Setup dnf repos
ansible.builtin.copy:
src: '../qubes-config/etc/dnf/dnf.conf'
src: 'etc/dnf/dnf.conf'
dest: '/etc/dnf/dnf.conf'
mode: '0644'