add tasks for home directory structure
parent
ac606d534e
commit
3520fb2c14
|
@ -0,0 +1,18 @@
|
||||||
|
---
|
||||||
|
- name: create ~/.bashrc.d
|
||||||
|
file:
|
||||||
|
state: directory
|
||||||
|
path: "{{ ansible_env.HOME }}/.bashrc.d"
|
||||||
|
mode: "0750"
|
||||||
|
|
||||||
|
- name: create ~/.local/bin
|
||||||
|
file:
|
||||||
|
state: directory
|
||||||
|
path: "{{ ansible_env.HOME }}/.local/bin"
|
||||||
|
mode: "0750"
|
||||||
|
|
||||||
|
- name: create ~/.ssh
|
||||||
|
file:
|
||||||
|
state: directory
|
||||||
|
path: "{{ ansible_env.HOME }}/.ssh"
|
||||||
|
mode: "0700"
|
Reference in New Issue