homeserver/roles/mgrote_user_setup/handlers/main.yml
Michael Grote 11fdc25470
Some checks failed
ansible-lint / gitleaks (pull_request) Successful in 2s
ansible-lint / Ansible Lint (pull_request) Failing after 25s
dd
2024-10-08 17:12:49 +02:00

9 lines
249 B
YAML

---
- name: Vundle - PluginInstall # noqa no-changed-when risky-shell-pipe
become: true
become_user: "{{ item.user }}"
ansible.builtin.shell: vim -E -s -c PluginInstall -c qall
args:
chdir: "{{ item.home }}"
loop: "{{ dotfiles }}"
...