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)
become: true
pacman:
name: python-pynvim, neovim
name:
- python-pynvim
- neovim
when:
ansible_distribution == 'Archlinux'
- name: Install packages (Debian)
become: true
apt:
name: python3-pynvim, neovim
name:
- python3-pynvim
- neovim
when:
ansible_distribution == 'Debian'