This commit is contained in:
Justin 2025-01-28 14:27:44 -06:00
parent c1db0e5a97
commit 06af578eb8
1 changed files with 15 additions and 1 deletions

View File

@ -1,8 +1,22 @@
--- ---
- name: Installing Nvim - name: Installing Nvim
hosts: 192.168.1.25 hosts: 192.168.1.122
tasks: 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 - name: Pulling from github
ansible.builtin.command: ansible.builtin.command:
cmd: "curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz" cmd: "curl -LO https://github.com/neovim/neovim/releases/latest/download/nvim-linux64.tar.gz"