Add task to disable case sensitive tab completion
This commit is contained in:
parent
9dd76a9161
commit
4a21c792e1
@ -37,6 +37,14 @@
|
|||||||
group: "{{ ansible_user }}"
|
group: "{{ ansible_user }}"
|
||||||
mode: 0644
|
mode: 0644
|
||||||
|
|
||||||
|
- name: Disable case-sensitive tab-completion
|
||||||
|
become: true
|
||||||
|
ansible.builtin.lineinfile:
|
||||||
|
line: set completion-ignore-case On
|
||||||
|
path: /etc/inputrc
|
||||||
|
state: present
|
||||||
|
create: true
|
||||||
|
|
||||||
- name: Install EPEL repository config
|
- name: Install EPEL repository config
|
||||||
when: ansible_distribution == "Rocky"
|
when: ansible_distribution == "Rocky"
|
||||||
become: true
|
become: true
|
||||||
|
Reference in New Issue
Block a user