diff options
author | Ismaël Bouya <ismael.bouya@fretlink.com> | 2018-11-02 17:03:49 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@fretlink.com> | 2018-11-02 17:03:49 +0100 |
commit | 397c4fed757d201af627636822981e85e84ea572 (patch) | |
tree | d6733d4022bf04784be84581f6c16e96a1b229e8 /roles/shell/bash/tasks | |
download | Ansible-397c4fed757d201af627636822981e85e84ea572.tar.gz Ansible-397c4fed757d201af627636822981e85e84ea572.tar.zst Ansible-397c4fed757d201af627636822981e85e84ea572.zip |
Validation initiale
Diffstat (limited to 'roles/shell/bash/tasks')
-rw-r--r-- | roles/shell/bash/tasks/main.yml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/roles/shell/bash/tasks/main.yml b/roles/shell/bash/tasks/main.yml new file mode 100644 index 0000000..d74421a --- /dev/null +++ b/roles/shell/bash/tasks/main.yml | |||
@@ -0,0 +1,17 @@ | |||
1 | --- | ||
2 | - name: Add bashrc config | ||
3 | template: | ||
4 | src: bashrc.j2 | ||
5 | dest: $HOME/.bashrc | ||
6 | - name: Add bash_profile config | ||
7 | template: | ||
8 | src: bash_profile.j2 | ||
9 | dest: $HOME/.bash_profile | ||
10 | - name: Create bash state dir | ||
11 | file: | ||
12 | path: $XDG_STATE_HOME/bash | ||
13 | state: directory | ||
14 | - name: Create less state dir | ||
15 | file: | ||
16 | path: $XDG_STATE_HOME/less | ||
17 | state: directory | ||