Add readline role

This commit is contained in:
Fernando Schauenburg 2019-11-15 19:30:02 +00:00
parent dad459852c
commit 6081b7b9ea
4 changed files with 14 additions and 1 deletions

View file

@ -12,7 +12,7 @@
#- hushlogin
#- mintty
#- python
#- readline
- readline
#- ssh
#- tmux
- vim

Binary file not shown.

View file

@ -0,0 +1,13 @@
---
- name: Create the readline config directory
file:
path: ~/.config/readline
state: directory
- name: Deploy inputrc
file:
src: "{{ role_path }}/files/inputrc"
dest: ~/.config/readline/inputrc
state: link
force: yes