Use VSCodium instead of VSCode

This commit is contained in:
Anthony Rose 2021-05-11 10:23:52 +01:00
parent 13728a229d
commit 24445bcf7a
3 changed files with 39 additions and 1 deletions

View file

@ -0,0 +1,8 @@
[gitlab.com_paulcarroty_vscodium_repo]
name=gitlab.com_paulcarroty_vscodium_repo
baseurl=https://paulcarroty.gitlab.io/vscodium-deb-rpm-repo/rpms/
enabled=1
gpgcheck=1
repo_gpgcheck=1
gpgkey=https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg
metadata_expire=1h

View file

@ -19,6 +19,6 @@
- include: modules.yml - include: modules.yml
- include: ssh.yml - include: ssh.yml
- include: solokeys.yml - include: solokeys.yml
- include: vscode.yml - include: vscodium.yml
when: gui == true when: gui == true
- include: packagekit.yml - include: packagekit.yml

View file

@ -0,0 +1,30 @@
---
# Copyright 2021 Anthony Perkins
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- name: Install paulcarroty signing key
become: true
ansible.builtin.rpm_key:
key: https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg
fingerprint: 1302DE60231889FE1EBACADC54678CF75A278D9C
- name: Install vscode repository
become: true
ansible.builtin.copy:
src: vscodium.repo
dest: /etc/yum.repos.d/vscodium.repo
- name: Install VSCodium package
become: true
ansible.builtin.dnf:
name: 'codium'
state: present