Configuring yum
How to configure the RPM package manager
This page explains how to configure yum to pull packages from the Seal artifact server based on your existing setup.
Make sure you have the access token for the server ready.
Pull directly from the artifact server
Yum's configuration is saved in the yum.repos.d directory.
Our goal is to add https://rpm.sealsecurity.io/ as a remote repository.
Run:
vim /etc/yum.repos.d/.repoWe want the
.repofile to look like this:
[seal]
name=seal
baseurl=https://rpm.sealsecurity.io/centos/$releasever/updates/$basearch/
username=$PROJECT_ID
password=$TOKEN
enabled=1
gpgcheck=0In the
$PROJECT_IDput the name of your project. This value will later be used in the reporting to indicate which project pulled which vulnerable package.In the
$TOKENput the access token to the Seal artifact server.
Last updated