feat: Create role
This commit is contained in:
25
tasks/main.yml
Normal file
25
tasks/main.yml
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
# tasks file for vim
|
||||
|
||||
- name: Uninstall nano
|
||||
ansible.builtin.apt:
|
||||
name: nano
|
||||
state: absent
|
||||
become: true
|
||||
|
||||
- name: Install packages
|
||||
ansible.builtin.apt:
|
||||
name:
|
||||
- vim
|
||||
- vim-airline
|
||||
- vim-lastplace
|
||||
become: true
|
||||
|
||||
- name: Deploy configuration
|
||||
ansible.builtin.template:
|
||||
src: vimrc.local.j2
|
||||
dest: /etc/vim/vimrc.local
|
||||
owner: root
|
||||
group: root
|
||||
mode: u=rw,g=r,o=r
|
||||
become: true
|
Reference in New Issue
Block a user