feat: Create role

This commit is contained in:
2023-09-22 12:06:23 +02:00
committed by pulsar89.5
parent 82119b412d
commit 66408f4cba
4 changed files with 47 additions and 2 deletions

25
tasks/main.yml Normal file
View 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