Replacing vscode with vscodium
This commit is contained in:
parent
e4642cd710
commit
e14dbcd184
2 changed files with 18 additions and 6 deletions
|
@ -25,11 +25,15 @@
|
||||||
# ansible.builtin.include_role:
|
# ansible.builtin.include_role:
|
||||||
# name: arkenfox
|
# name: arkenfox
|
||||||
|
|
||||||
- name: 'Setup vscode repo'
|
- name: 'Import VSCodium repo key'
|
||||||
ansible.builtin.copy:
|
ansible.builtin.rpm_key:
|
||||||
src: 'etc/yum.repos.d/vscode.repo'
|
state: 'present'
|
||||||
dest: '/etc/yum.repos.d/vscode.repo'
|
key: 'https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg'
|
||||||
mode: '0644'
|
|
||||||
|
- name: 'Import VSCodium repo'
|
||||||
|
ansible.builtin.copy:
|
||||||
|
src: 'etc/yum.repos.d/vscodium.repo'
|
||||||
|
dest: '/etc/yum.repos.d/vscodium.repo'
|
||||||
|
|
||||||
- name: 'Setup docker repo'
|
- name: 'Setup docker repo'
|
||||||
shell: 'sudo dnf config-manager addrepo --from-repofile=https://download.docker.com/linux/fedora/docker-ce.repo -y'
|
shell: 'sudo dnf config-manager addrepo --from-repofile=https://download.docker.com/linux/fedora/docker-ce.repo -y'
|
||||||
|
@ -37,7 +41,7 @@
|
||||||
- name: 'Install vscode and docker'
|
- name: 'Install vscode and docker'
|
||||||
ansible.builtin.dnf5:
|
ansible.builtin.dnf5:
|
||||||
name:
|
name:
|
||||||
- code
|
- codium
|
||||||
# - docker-ce
|
# - docker-ce
|
||||||
# - docker-buildx-plugin
|
# - docker-buildx-plugin
|
||||||
# - docker-compose-plugin
|
# - docker-compose-plugin
|
||||||
|
|
8
files/etc/yum.repos.d/vscodium.repo
Normal file
8
files/etc/yum.repos.d/vscodium.repo
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
[gitlab.com_paulcarroty_vscodium_repo]
|
||||||
|
name=download.vscodium.com
|
||||||
|
baseurl=https://download.vscodium.com/rpms/
|
||||||
|
enabled=1
|
||||||
|
gpgcheck=1
|
||||||
|
repo_gpgcheck=1
|
||||||
|
gpgkey=https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg
|
||||||
|
metadata_expire=1h
|
Loading…
Reference in a new issue