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