Add loading of local profile bash completions

This commit is contained in:
2022-05-24 22:33:59 -04:00
parent 2d26caba54
commit d5f92811bd

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: