ff
All checks were successful
ansible-lint / gitleaks (pull_request) Successful in 3s
ansible-lint / Ansible Lint (pull_request) Successful in 29s

This commit is contained in:
Michael Grote 2024-10-08 17:45:08 +02:00
parent 15698fdb98
commit 97f32d7b8b
2 changed files with 14 additions and 3 deletions

View file

@ -2,10 +2,8 @@
- 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"
ansible.builtin.shell: "yes | vim -c PluginInstall -c qall"
args:
chdir: "{{ item.home }}"
loop: "{{ dotfiles }}"
register: plugin
changed_when: "plugin.rc == 1"
...

View file

@ -68,6 +68,19 @@
group: "{{ item.user }}"
loop: "{{ dotfiles }}"
- name: Link vim spelldir
become: true
ansible.builtin.file:
src: "{{ item.home }}/dotfiles/.vim/spell"
dest: "{{ item.home }}/.vim/spell/"
state: link
follow: false # https://github.com/ansible/ansible/issues/73143
force: true
owner: "{{ item.user }}"
group: "{{ item.user }}"
loop: "{{ dotfiles }}"
- name: add source .bash_extra to user .bashrc
become: true
ansible.builtin.lineinfile: