Skip to content
Snippets Groups Projects
Commit d6510777 authored by Jörg Sachse's avatar Jörg Sachse
Browse files

test: skip linting with command-instead-of-shell rule against Bash-completion...

test: skip linting with command-instead-of-shell rule against Bash-completion task, because it really NEEDS to use ansible.builtin.shell
parent 8e3b84fe
No related branches found
No related tags found
1 merge request!2merge feat_ND-2363_ND-2323 into master
......@@ -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"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment