Add mintty role
This commit is contained in:
parent
4c0bfbb30a
commit
ffef99af11
3 changed files with 14 additions and 1 deletions
|
@ -10,7 +10,7 @@
|
||||||
- dircolors
|
- dircolors
|
||||||
#- git
|
#- git
|
||||||
#- hushlogin
|
#- hushlogin
|
||||||
#- mintty
|
- mintty
|
||||||
#- python
|
#- python
|
||||||
- readline
|
- readline
|
||||||
#- ssh
|
#- ssh
|
||||||
|
|
13
roles/mintty/tasks/main.yml
Normal file
13
roles/mintty/tasks/main.yml
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
---
|
||||||
|
- name: Create the mintty config directory
|
||||||
|
file:
|
||||||
|
path: ~/.config/mintty
|
||||||
|
state: directory
|
||||||
|
|
||||||
|
- name: Deploy mintty config
|
||||||
|
file:
|
||||||
|
src: "{{ role_path }}/files/config"
|
||||||
|
dest: ~/.config/mintty/config
|
||||||
|
state: link
|
||||||
|
force: yes
|
||||||
|
|
Loading…
Add table
Reference in a new issue