skylab
/
skylab-ansible
Archived
2
0
Fork 0

Add task to disable case sensitive tab completion

This commit is contained in:
Ethan Paul 2021-11-06 00:05:48 -04:00
parent 9dd76a9161
commit 4a21c792e1
No known key found for this signature in database
GPG Key ID: 6A337337DF6B5B1A
1 changed files with 8 additions and 0 deletions

View File

@ -37,6 +37,14 @@
group: "{{ ansible_user }}"
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
when: ansible_distribution == "Rocky"
become: true