General Enhancements #4

Merged
me merged 64 commits from dev into main 2025-06-16 12:33:16 -07:00
11 changed files with 518 additions and 72 deletions
Showing only changes of commit 695a7fc30b - Show all commits

View File

@ -27,15 +27,12 @@
## Install Repo ##
- name: Workstation | Linux | Software | VS Codium | Add Latest Key
shell: "wget -qO - https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg \
| gpg --dearmor \
| sudo tee {{ vscodium_keyfile }} > /dev/null"
when: ansible_pkg_mgr == "apt" and coding == true
- name: Workstation | Linux | Software | VS Codium | Add PPA
shell: "{{ item }}"
loop:
- "wget -qO - https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg \
| gpg --dearmor \
| sudo tee {{ vscodium_keyfile }} > /dev/null"
- "echo 'deb [arch=amd64,arm64 signed-by={{ vscodium_keyfile }}] https://download.vscodium.com/debs vscodium main' \
| sudo tee {{ vscodium_source_list }}"
- "sudo apt update"