diff --git a/tasks/install_subapp.yml b/tasks/install_subapp.yml
index 39d108f70fd63ed059f8a31686b32a8a6dc0a75c..fb97925f6535b70e6414444517d5fda1b20f3f51 100644
--- a/tasks/install_subapp.yml
+++ b/tasks/install_subapp.yml
@@ -203,11 +203,11 @@
       group: "{{ vault_disapp_group }}"
 
 # Bash-Completion funktioniert ab 2020.2 anders, s. Abschnitt AUTOCOMPLETION in perldoc bin/subapp_rosetta.pl und bin/disapp_rosetta.pl
-- name: Bash-Completion aktivieren
+- name: Bash-Completion aktivieren    # noqa [command-instead-of-shell]
   ansible.builtin.shell:
     chdir: "/usr/local/bin/"
     cmd: "{{ item }}"
-    executable: "/usr/bin/bash"
+    executable: "/usr/bin/bash"       # Yup, this REALLY needs a Bash, so we HAVE to use ansible.builtin.shell, so don't show linter errors
   loop:
     - "complete -C subapp_rosetta.pl subapp_rosetta.pl"
     - "complete -C disapp_rosetta.pl disapp_rosetta.pl"