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)
|
- 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'
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue