12 lines
238 B
YAML
12 lines
238 B
YAML
---
|
|
- name: Download starship installer
|
|
get_url:
|
|
url: https://starship.rs/install.sh
|
|
dest: /root/starship.sh
|
|
owner: root
|
|
group: root
|
|
mode: 0755
|
|
|
|
- name: Install starship (via installer)
|
|
shell: /root/starship.sh -y
|