Fix rpm repo instructions (#102)

* settings for my Frontmatter config

* updated rpm repo install instructions
This commit is contained in:
Garrett Figueroa 2025-11-11 14:18:08 -07:00 committed by GitHub
parent b6748cea51
commit bddcfae719
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 25 additions and 10 deletions

3
.gitignore vendored
View File

@ -1 +1,4 @@
_site/ _site/
frontmatter.json
taxonomyDb.json
pinnedItemsDb.json

View File

@ -150,22 +150,34 @@ sudo apt update && sudo apt install codium
<a tabindex="-1" aria-hidden="true" id="rpm" href="#rpm"></a> <a tabindex="-1" aria-hidden="true" id="rpm" href="#rpm"></a>
### Install on Fedora / RHEL / CentOS / RockyLinux / OpenSUSE (rpm package): ### Install on Fedora / RHEL / CentOS / RockyLinux / OpenSUSE (rpm package):
Add the GPG key of the repository:
```bash
sudo rpmkeys --import https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg
```
Add the repository: Add the repository:
- **Fedora/RHEL/CentOS/Rocky Linux**: - **Fedora/RHEL/CentOS/Rocky Linux**:
```bash ```
printf "[gitlab.com_paulcarroty_vscodium_repo]\nname=download.vscodium.com\nbaseurl=https://download.vscodium.com/rpms/\nenabled=1\ngpgcheck=1\nrepo_gpgcheck=1\ngpgkey=https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg\nmetadata_expire=1h\n" | sudo tee -a /etc/yum.repos.d/vscodium.repo sudo tee -a /etc/yum.repos.d/vscodium.repo << 'EOF'
[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
EOF
``` ```
- **OpenSUSE/SUSE**: - **OpenSUSE/SUSE**:
```bash ```
printf "[gitlab.com_paulcarroty_vscodium_repo]\nname=gitlab.com_paulcarroty_vscodium_repo\nbaseurl=https://download.vscodium.com/rpms/\nenabled=1\ngpgcheck=1\nrepo_gpgcheck=1\ngpgkey=https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg\nmetadata_expire=1h\n" | sudo tee -a /etc/zypp/repos.d/vscodium.repo sudo tee -a /etc/zypp/repos.d/vscodium.repo << 'EOF'
[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
EOF
``` ```