Skip to content

Latest commit

 

History

History
52 lines (38 loc) · 1.37 KB

README.md

File metadata and controls

52 lines (38 loc) · 1.37 KB

Package Distributor

Build Status Docker Repository on Quay

Table of Contents

Supported Package Management Systems

  • apt
  • yum

Directory

  • /apt - Debian packages.
    • /conf
    • /dists
    • /pool
  • /yum - RPM packages.
    • /repos/-/repodata - e.g. /repos/el7-x86_64/repodata

How to use

Ubuntu/Debian

wget -q https://repo.example.com/apt/conf/gpg.key -O - | apt-key add -
echo 'deb https://repo.example.com/apt xenial main' > /etc/apt/sources.list.d/<repo>.list

CentOS 7

[<repo>]
name=<repo>
baseurl=https://repo.example.com/yum/repos/el7-x86_64/
enabled=1
gpgcheck=1
repo_gpgcheck=1
gpgkey=https://repo.example.com/yum/doc/gpg.key

References