From b794adb98e2f159aa09543882b3ab7699e8bc8af Mon Sep 17 00:00:00 2001 From: daryll Date: Wed, 29 Nov 2023 16:07:45 -0500 Subject: add .bash_profile; removed some backup files --- ansible-practice/system/02-playbook-copy-bash-configs.yml | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'ansible-practice/system/02-playbook-copy-bash-configs.yml') diff --git a/ansible-practice/system/02-playbook-copy-bash-configs.yml b/ansible-practice/system/02-playbook-copy-bash-configs.yml index ae4dd97..a1a54a7 100644 --- a/ansible-practice/system/02-playbook-copy-bash-configs.yml +++ b/ansible-practice/system/02-playbook-copy-bash-configs.yml @@ -22,3 +22,10 @@ dest: "~/tmp/temp_files/.bashrc" mode: '0644' tags: ['bashrc'] + + - name: Creating '.bash_profile' file with content + copy: + src: ~/repos/ansible_repo/ansible-practice/system/.bash_profile + dest: "~/tmp/temp_files/.bash_profile" + mode: '0644' + tags: ['bash_profile'] -- cgit v1.2.3-54-g00ecf