toansible: Fix install of packages written on the same line

This commit is contained in:
flyingscorpio@clevo 2022-02-23 21:44:10 +01:00
parent 7062a5369e
commit b781da0566

View file

@ -2,14 +2,18 @@
- name: Install packages (Archlinux) - name: Install packages (Archlinux)
become: true become: true
pacman: pacman:
name: python-pynvim, neovim name:
- python-pynvim
- neovim
when: when:
ansible_distribution == 'Archlinux' ansible_distribution == 'Archlinux'
- name: Install packages (Debian) - name: Install packages (Debian)
become: true become: true
apt: apt:
name: python3-pynvim, neovim name:
- python3-pynvim
- neovim
when: when:
ansible_distribution == 'Debian' ansible_distribution == 'Debian'