toansible: Fix install of packages written on the same line
This commit is contained in:
parent
7062a5369e
commit
b781da0566
1 changed files with 6 additions and 2 deletions
|
@ -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'
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue