From 9f6f4adbed4818064acc0977487106fea40a2e4d Mon Sep 17 00:00:00 2001 From: Anthony Perkins Date: Sat, 21 Jan 2023 19:29:40 +0000 Subject: [PATCH] Automatically patch Debian 11 --- .../debian-11-add-lv5-rctrl-switch.patch | 0 roles/debian/tasks/main.yml | 2 ++ roles/debian/tasks/xkb-lv5.yml | 22 +++++++++++++++++++ 3 files changed, 24 insertions(+) rename roles/{home-gui => debian}/files/debian-11-add-lv5-rctrl-switch.patch (100%) create mode 100644 roles/debian/tasks/xkb-lv5.yml diff --git a/roles/home-gui/files/debian-11-add-lv5-rctrl-switch.patch b/roles/debian/files/debian-11-add-lv5-rctrl-switch.patch similarity index 100% rename from roles/home-gui/files/debian-11-add-lv5-rctrl-switch.patch rename to roles/debian/files/debian-11-add-lv5-rctrl-switch.patch diff --git a/roles/debian/tasks/main.yml b/roles/debian/tasks/main.yml index 09207e7..f438ad0 100644 --- a/roles/debian/tasks/main.yml +++ b/roles/debian/tasks/main.yml @@ -30,3 +30,5 @@ - import_tasks: systemd.yml when: wsl == false - import_tasks: gdm.yml +- import_tasks: xkb-lv5.yml + when: gui == true diff --git a/roles/debian/tasks/xkb-lv5.yml b/roles/debian/tasks/xkb-lv5.yml new file mode 100644 index 0000000..85cb7f5 --- /dev/null +++ b/roles/debian/tasks/xkb-lv5.yml @@ -0,0 +1,22 @@ +--- +# Copyright 2021 Anthony Perkins +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +- name: Enable lv5:rctrl_switch on Debian 11 + become: true + ansible.posix.patch: + src: debian-11-add-lv5-rctrl-switch.patch + basedir: /usr/share/X11/xkb/rules + strip: 1 + when: ansible_distribution_version == "11"