From 96e7d8ca5776fe066075f5e17b2ebda4fea526c5 Mon Sep 17 00:00:00 2001 From: Salt Date: Wed, 15 Apr 2020 09:57:41 -0500 Subject: [PATCH] Add a workaround for a dumb Ubuntu bug --- roles/desktop/tasks/main.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/roles/desktop/tasks/main.yml b/roles/desktop/tasks/main.yml index 935d3d4..432be99 100644 --- a/roles/desktop/tasks/main.yml +++ b/roles/desktop/tasks/main.yml @@ -10,6 +10,13 @@ recurse: yes loop: - "/etc/X11/xorg.conf.d" + - name: Nuke some configs + file: + path: "{{ item }}" + state: absent + loop: + # Works around a bug where this causes failed logins + - "/etc/X11/Xsession.d/70im-config_launch" - name: Copy system configs template: src: "{{ item.src }}"