summaryrefslogtreecommitdiff
path: root/ansible-practice/system/02-playbook-copy-bash-configs.yml
diff options
context:
space:
mode:
authordaryll <dpierre@blizzack.com>2023-11-29 16:07:45 -0500
committerdaryll <dpierre@blizzack.com>2023-11-29 16:07:45 -0500
commitb794adb98e2f159aa09543882b3ab7699e8bc8af (patch)
treebd9473cedf6fac05018525b16dc7076dd64697b3 /ansible-practice/system/02-playbook-copy-bash-configs.yml
parentd00dff82886992cdad94ac70bc438ec5b2bda1a2 (diff)
add .bash_profile; removed some backup files
Diffstat (limited to 'ansible-practice/system/02-playbook-copy-bash-configs.yml')
-rw-r--r--ansible-practice/system/02-playbook-copy-bash-configs.yml7
1 files changed, 7 insertions, 0 deletions
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']