13 lines
321 B
YAML
13 lines
321 B
YAML
---
|
|
- name: Download Starship installer
|
|
ansible.builtin.get_url:
|
|
url: https://starship.rs/install.sh
|
|
dest: /tmp/starship_install.sh
|
|
mode: '0755'
|
|
register: starship_script
|
|
|
|
- name: Install Starship
|
|
ansible.builtin.command:
|
|
cmd: /tmp/starship_install.sh -y
|
|
args:
|
|
creates: /usr/local/bin/starship |