homeserver/roles/mgrote_user_setup/handlers/main.yml
Michael Grote 03ddd20412
All checks were successful
ansible-lint / gitleaks (push) Successful in 2s
ansible-lint / Ansible Lint (push) Successful in 23s
fix vim vundle plugin install (#204)
Reviewed-on: https://git.mgrote.net///mg/homeserver/pulls/204
Co-authored-by: Michael Grote <michael.grote@posteo.de>
Co-committed-by: Michael Grote <michael.grote@posteo.de>
2024-10-08 17:52:39 +02:00

9 lines
251 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 }}"
...