Added
This commit is contained in:
parent
c1db0e5a97
commit
06af578eb8
|
@ -1,8 +1,22 @@
|
|||
---
|
||||
- name: Installing Nvim
|
||||
hosts: 192.168.1.25
|
||||
hosts: 192.168.1.122
|
||||
|
||||
tasks:
|
||||
- name: make sure git is installed
|
||||
become: yes
|
||||
apt:
|
||||
update_cache: yes
|
||||
name: git
|
||||
state: latest
|
||||
|
||||
- name: install build essential
|
||||
become: yes
|
||||
apt:
|
||||
update_cache: yes
|
||||
name: build-essetial
|
||||
state: latest
|
||||
|
||||
- name: Pulling from github
|
||||
ansible.builtin.command:
|
||||
cmd: "curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz"
|
||||
|
|
Loading…
Reference in New Issue