diff --git a/debian12-basic.yml b/debian12-basic.yml index 56386c3..90f36fd 100644 --- a/debian12-basic.yml +++ b/debian12-basic.yml @@ -108,20 +108,20 @@ path: "/opt/nvim-linux64/bin" register: nvim - - name: Download foo.conf + - name: Download nvim for linux ansible.builtin.get_url: url: "https://github.com/neovim/neovim/releases/download/v0.9.5/nvim-linux64.tar.gz" dest: "/tmp/nvim-linux64.tar.gz" mode: '0440' when: not nvim.stat.exists - - name: Extract foo.tgz into /var/lib/foo + - name: Extract nvim to /opt ansible.builtin.unarchive: - src: "/tmp/nvim-linux64.tar.gz" + remote_src: "/tmp/nvim-linux64.tar.gz" dest: /opt when: not nvim.stat.exists - - name: Ensure SELinux is set to enforcing mode + - name: add nvim to path in bash ansible.builtin.lineinfile: path: ~/bashrc regexp: '^export PATH'