diff --git a/roles/home-cli/tasks/shell.yml b/roles/home-cli/tasks/shell.yml index 6a300dd..aa61bd3 100644 --- a/roles/home-cli/tasks/shell.yml +++ b/roles/home-cli/tasks/shell.yml @@ -13,19 +13,19 @@ # See the License for the specific language governing permissions and # limitations under the License. -- name: Copy .bashrc +- name: Create $HOME/.bashrc ansible.builtin.copy: src: bashrc dest: "{{ ansible_env.HOME }}/.bashrc" -- name: Copy .bash_profile +- name: Create $HOME/.bash_profile ansible.builtin.copy: src: bash_profile dest: "{{ ansible_env.HOME }}/.bash_profile" -- name: Copy .zshrc +- name: Create $HOME/.zshrc ansible.builtin.copy: src: zshrc dest: "{{ ansible_env.HOME }}/.zshrc" -- name: Copy .zprofile +- name: Create $HOME/.zprofile ansible.builtin.copy: src: zprofile dest: "{{ ansible_env.HOME }}/.zprofile"