2025-08-17 12:19:28 +03:00
|
|
|
- name: Linking bashrc
|
2025-08-03 12:33:33 +03:00
|
|
|
ansible.builtin.file:
|
|
|
|
|
src: '{{ role_path }}/files/.bashrc'
|
|
|
|
|
dest: '{{ ansible_env.HOME }}/.bashrc'
|
|
|
|
|
state: link
|
|
|
|
|
force: true
|
|
|
|
|
|
2025-08-17 12:19:28 +03:00
|
|
|
- name: Linking inputrc
|
2025-08-03 12:33:33 +03:00
|
|
|
ansible.builtin.file:
|
|
|
|
|
src: '{{ role_path }}/files/.inputrc'
|
|
|
|
|
dest: '{{ ansible_env.HOME }}/.inputrc'
|
|
|
|
|
state: link
|
|
|
|
|
force: true
|
|
|
|
|
|
2025-08-17 12:19:28 +03:00
|
|
|
- name: Linking profile
|
2025-08-03 12:33:33 +03:00
|
|
|
ansible.builtin.file:
|
|
|
|
|
src: '{{ role_path }}/files/.profile'
|
|
|
|
|
dest: '{{ ansible_env.HOME }}/.profile'
|
|
|
|
|
state: link
|
|
|
|
|
force: true
|
|
|
|
|
|
2025-08-17 12:19:28 +03:00
|
|
|
- name: Linking bash profile
|
2025-08-03 12:33:33 +03:00
|
|
|
ansible.builtin.file:
|
|
|
|
|
src: '{{ role_path }}/files/.bash_profile'
|
|
|
|
|
dest: '{{ ansible_env.HOME }}/.bash_profile'
|
|
|
|
|
state: link
|
|
|
|
|
force: true
|