11 lines
307 B
YAML
11 lines
307 B
YAML
---
|
|
- 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"
|
|
args:
|
|
chdir: "{{ item.home }}"
|
|
loop: "{{ dotfiles }}"
|
|
register: plugin
|
|
successful_when: plugin.rc == 1
|
|
...
|