diff options
Diffstat (limited to 'ansible-practice/system/02-playbook-copy-bash-configs.yml')
| -rw-r--r-- | ansible-practice/system/02-playbook-copy-bash-configs.yml | 7 |
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'] |
