From 9861d9144638a00090e12c21505f43aeb9002fc4 Mon Sep 17 00:00:00 2001 From: mg Date: Fri, 20 Aug 2021 23:01:05 +0200 Subject: [PATCH] =?UTF-8?q?bash=5Fextra=20erg=C3=A4nzt=20(#192)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Michael Grote Reviewed-on: https://git.mgrote.net/mg/ansible/pulls/192 Co-authored-by: mg Co-committed-by: mg --- roles/mgrote.dotfiles/tasks/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/roles/mgrote.dotfiles/tasks/main.yml b/roles/mgrote.dotfiles/tasks/main.yml index d21fd0ef..cd2d5b5c 100644 --- a/roles/mgrote.dotfiles/tasks/main.yml +++ b/roles/mgrote.dotfiles/tasks/main.yml @@ -60,3 +60,9 @@ path: /home/{{ dotfiles_owner }}/.bashrc line: "source {{ dotfiles_repo_path }}/.bash_functions" state: present + + - name: add .bash_extra to .bashrc + ansible.builtin.lineinfile: + path: /home/{{ dotfiles_owner }}/.bashrc + line: "source {{ dotfiles_repo_path }}/.bash_extra" + state: present