homeserver/roles/mgrote_user_setup/handlers/main.yml
Michael Grote fe369a70be
Some checks failed
ansible-lint / gitleaks (pull_request) Successful in 2s
ansible-lint / Ansible Lint (pull_request) Failing after 23s
ff
2024-10-08 17:18:36 +02:00

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
...