--- - name: copy '.bash_aliases' ansible.builtin.copy: src: .bash_aliases dest: "{{ prefix_dir }}.bash_aliases" mode: '0644' tags: ['bash_aliases'] - name: copy '.bashrc' file with content ansible.builtin.copy: src: .bashrc dest: "{{ prefix_dir }}.bashrc" mode: '0644' tags: ['bashrc'] - name: copy '.bash_profile' file with content ansible.builtin.copy: src: .bash_profile dest: "{{ prefix_dir }}.bash_profile" mode: '0644' tags: ['bash_profile']