From 24445bcf7a5a0bd8ea0f8aceb333a9215bfcfc78 Mon Sep 17 00:00:00 2001 From: Anthony Perkins Date: Tue, 11 May 2021 10:23:52 +0100 Subject: [PATCH] Use VSCodium instead of VSCode --- roles/fedora/files/vscodium.repo | 8 ++++++++ roles/fedora/tasks/main.yml | 2 +- roles/fedora/tasks/vscodium.yml | 30 ++++++++++++++++++++++++++++++ 3 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 roles/fedora/files/vscodium.repo create mode 100644 roles/fedora/tasks/vscodium.yml diff --git a/roles/fedora/files/vscodium.repo b/roles/fedora/files/vscodium.repo new file mode 100644 index 0000000..23676e1 --- /dev/null +++ b/roles/fedora/files/vscodium.repo @@ -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 diff --git a/roles/fedora/tasks/main.yml b/roles/fedora/tasks/main.yml index e2c076c..f35bcfe 100644 --- a/roles/fedora/tasks/main.yml +++ b/roles/fedora/tasks/main.yml @@ -19,6 +19,6 @@ - include: modules.yml - include: ssh.yml - include: solokeys.yml -- include: vscode.yml +- include: vscodium.yml when: gui == true - include: packagekit.yml diff --git a/roles/fedora/tasks/vscodium.yml b/roles/fedora/tasks/vscodium.yml new file mode 100644 index 0000000..72dd269 --- /dev/null +++ b/roles/fedora/tasks/vscodium.yml @@ -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