add pcloud

This commit is contained in:
Bartal Laearsson
2026-06-30 10:58:19 +01:00
parent cad054d468
commit 1330fb66eb
7 changed files with 176 additions and 38 deletions
+6 -11
View File
@@ -83,22 +83,17 @@
become: false
register: starship_binary
- name: Download the Starship installer
- name: Download Starship installer script
ansible.builtin.get_url:
url: https://starship.rs/install.sh
dest: /tmp/starship-install.sh
mode: "0755"
dest: /tmp/install_starship.sh
mode: '0755'
when: not starship_binary.stat.exists
- name: Install Starship for the workstation user
ansible.builtin.command:
argv:
- /tmp/starship-install.sh
- --yes
- --bin-dir
- "{{ user_home }}/.local/bin"
become: false
- name: Run Starship installer
ansible.builtin.command: /tmp/install_starship.sh -y
when: not starship_binary.stat.exists
become: true
- name: Check for Bun
ansible.builtin.stat: