added Starship installation
This commit is contained in:
13
tasks/starship.yml
Normal file
13
tasks/starship.yml
Normal file
@@ -0,0 +1,13 @@
|
||||
---
|
||||
- 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
|
||||
Reference in New Issue
Block a user