Compare commits

..

No commits in common. "fbf48d7c3d52012d9c7396450b85051b1a1561aa" and "c1db0e5a97b153130113c107f2b5abbedf516391" have entirely different histories.

2 changed files with 1 additions and 27 deletions

View File

@ -1,22 +1,8 @@
---
- name: Installing Nvim
hosts: 192.168.1.122
hosts: 192.168.1.25
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"

View File

@ -65,18 +65,6 @@
autoclean: true
autoremove: true
- name: installing net-tools on all
hosts: all
become: yes
tasks:
- name: running apt
when: ansible_pkg_mgr == 'apt'
ansible.builtin.apt:
name: net-tools
state: latest
- name: Send completed update
hosts: localhost