Update role names

This commit is contained in:
Anthony Rose 2022-08-18 17:01:06 +01:00
parent 8ffb0a4772
commit bef9016deb

View file

@ -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"