skylab
/
skylab-ansible
Archived
2
0
Fork 0

Add loading of local profile bash completions

This commit is contained in:
Ethan Paul 2022-05-24 22:33:59 -04:00
parent 2d26caba54
commit d5f92811bd
Signed by: enpaul
GPG Key ID: 9B6D99E4CFA31867
1 changed files with 8 additions and 0 deletions

View File

@ -17,6 +17,14 @@
state: present
loop: "{{ _local_human_users }}"
- name: Configure local bash completions loading
become: true
ansible.builtin.lineinfile:
path: ~{{ item }}/.bashrc
line: source ~/.config/bash_completions
state: present
loop: "{{ _local_human_users }}"
- name: Configure bash completions
become: true
ansible.builtin.blockinfile: