10 lines
249 B
YAML
10 lines
249 B
YAML
|
---
|
||
|
- name: Vundle - PluginInstall # noqa no-changed-when risky-shell-pipe
|
||
|
become: true
|
||
|
become_user: "{{ item.user }}"
|
||
|
ansible.builtin.shell: yes | vim -c PluginInstall -c qall
|
||
|
args:
|
||
|
chdir: "{{ item.home }}"
|
||
|
loop: "{{ dotfiles }}"
|
||
|
...
|