More content and playbooks
* more readme.md content * imported basic roles * commented said basic roles * trimmed down playbooks to be understandable * update requirements.txt deps
This commit is contained in:
parent
23b521f4fb
commit
2a067a2fe4
22 changed files with 491 additions and 0 deletions
12
roles/vim/tasks/main.yml
Normal file
12
roles/vim/tasks/main.yml
Normal file
|
@ -0,0 +1,12 @@
|
|||
---
|
||||
- name: Install vim
|
||||
apt:
|
||||
name: vim-nox
|
||||
state: latest
|
||||
# use the `copy` module to copy files to the remote host
|
||||
- name: Configure vim
|
||||
copy:
|
||||
src: vimrc
|
||||
dest: /etc/vim/vimrc
|
||||
owner: root
|
||||
group: root
|
Loading…
Add table
Add a link
Reference in a new issue