This repository has been archived on 2021-09-08. You can view files and clone it, but cannot push or open issues/pull-requests.
2021-05-10 14:54:18 -04:00
|
|
|
---
|
|
|
|
- name: create ~/.bashrc.d
|
|
|
|
file:
|
|
|
|
state: directory
|
|
|
|
path: "{{ ansible_env.HOME }}/.bashrc.d"
|
2021-05-11 12:17:33 -04:00
|
|
|
mode: "0700"
|
|
|
|
|
|
|
|
- name: create ~/.local
|
|
|
|
file:
|
|
|
|
state: directory
|
|
|
|
path: "{{ ansible_env.HOME }}/.local/bin"
|
|
|
|
mode: "0700"
|
2021-05-10 14:54:18 -04:00
|
|
|
|
|
|
|
- name: create ~/.local/bin
|
|
|
|
file:
|
|
|
|
state: directory
|
|
|
|
path: "{{ ansible_env.HOME }}/.local/bin"
|
2021-05-11 12:17:33 -04:00
|
|
|
mode: "0700"
|
2021-05-10 14:54:18 -04:00
|
|
|
|
|
|
|
- name: create ~/.ssh
|
|
|
|
file:
|
|
|
|
state: directory
|
|
|
|
path: "{{ ansible_env.HOME }}/.ssh"
|
|
|
|
mode: "0700"
|