14 lines
390 B
YAML
14 lines
390 B
YAML
---
|
|
- name: Clone the scripts repo
|
|
ansible.builtin.git:
|
|
repo: https://gitea.learningunix.net/cjr/scripts
|
|
dest: "{{ ansible_user_dir }}/scripts"
|
|
update: true
|
|
version: main
|
|
|
|
- name: Ensure that scripts is in the user's path
|
|
ansible.builtin.lineinfile:
|
|
path: "{{ ansible_user_dir }}/dotfiles/zsh/.zshrc"
|
|
line: 'export PATH="$HOME/scripts:$PATH"'
|
|
state: present
|