Add directory for custom scripts to be added to path
This commit is contained in:
parent
e8aebfa57a
commit
a4ef1f2d47
2 changed files with 11 additions and 0 deletions
|
@ -5,3 +5,5 @@ export HISTCONTROL=ignoreboth
|
||||||
|
|
||||||
export BROWSER=$(which firefox)
|
export BROWSER=$(which firefox)
|
||||||
export EDITOR=$(which vim)
|
export EDITOR=$(which vim)
|
||||||
|
|
||||||
|
export PATH=${HOME}/.bin:${PATH}
|
||||||
|
|
|
@ -111,6 +111,15 @@
|
||||||
group: users
|
group: users
|
||||||
directory_mode: 0755
|
directory_mode: 0755
|
||||||
|
|
||||||
|
- name: Install custom scripts
|
||||||
|
copy:
|
||||||
|
src: ./files/bin
|
||||||
|
dest: "{{ home }}/.bin"
|
||||||
|
mode: 0755
|
||||||
|
owner: "{{ user }}"
|
||||||
|
group: users
|
||||||
|
directory_mode: 0755
|
||||||
|
|
||||||
- name: Set vconsole keyboard
|
- name: Set vconsole keyboard
|
||||||
lineinfile:
|
lineinfile:
|
||||||
path: /etc/vconsole.conf
|
path: /etc/vconsole.conf
|
||||||
|
|
Loading…
Reference in a new issue