Link

Extra RPM packages for bleeding-edge cloud infrastructure

A MageOps RPM package collection sources, repository and build automation.

Use it now View project on GitHub


Getting started

Compatibility

This repository works in CentOS/RHEL 7 and requires EPEL to be installed and enabled.

Certain packages may require other repositories, the extra dependecies will be listed in their description on this site.

Install EPEL (required)

If you’re on CentOS it should be sufficient to install it from official release.

yum -y install epel-release
yum-config-manager --enable epel
rpm -Uvh https://mageops.github.io/packages-rpm/repo/el/7/mageops-release.noarch.rpm

Manual configuration by curl download (advanced)

  1. Install the GPG signing key
    curl -s https://raw.githubusercontent.com/mageops/packages-rpm/master/rpm-gpg-key.pub.asc > /etc/pki/rpm-gpg/RPM-GPG-KEY-MAGEOPS-2021
    
  2. Install the YUM repository config
    curl -s https://raw.githubusercontent.com/mageops/packages-rpm/master/packages/mageops-release/mageops.repo > /etc/yum.repos.d/mageops.repo
    

Finishing steps (optional)

  1. Import the GPG signing key
    rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-MAGEOPS-2021
    
  2. Compute cache for the new repository
    yum makecache --disablerepo="*" --enablerepo="mageops"