ff
Some checks failed
ansible-lint / gitleaks (pull_request) Successful in 2s
ansible-lint / Ansible Lint (pull_request) Failing after 23s

This commit is contained in:
Michael Grote 2024-10-08 17:18:36 +02:00
parent 972e33ec5a
commit fe369a70be

View file

@ -2,10 +2,10 @@
- name: Vundle - PluginInstall # noqa no-changed-when risky-shell-pipe
become: true
become_user: "{{ item.user }}"
ansible.builtin.shell: yes | vim -E -c PluginInstall -c qall
ansible.builtin.shell: "yes | vim -E -c PluginInstall -c qall"
args:
chdir: "{{ item.home }}"
loop: "{{ dotfiles }}"
register: plugin.rc
register: plugin
successful_when: plugin.rc == 1
...