MCCF Project Repo


NOTE: There is currenly only 1 repository in this repo file:
 -  mccf : This repo includes the YUM packages that are to be synchronized to the VA EDE environment
mccf.repo

How do I get set up?

Summary of set up

To list the contents of the repository, before adding it to your system

			[  ~]$ sudo repoquery --repofrompath="mccf,http://aws-master.mccf.halfakerlabs.com/pub/repo/yum/MCCF" --repoid=mccf -q -a
		

To add the repository to your system and enable it:

Use wget

			[  ~]$ sudo wget -O /etc/yum.repos.d/mccf.repo http://aws-master.mccf.halfakerlabs.com/pub/repo/yum/mccf.repo
		

Download and import the GPG Key

Get the key from the repo

			[  ~]$ sudo wget http://aws-master.mccf.halfakerlabs.com/pub/repo/yum/RPM-GPG-KEY-MCCF
		

Check the fingerprint of the GPG key with the gpg command to make sure it matches the published key

			[  ~]$ sudo gpg --quiet --with-fingerprint ./RPM-GPG-KEY-MCCF
		

Import the GPG key using the rpm command

			[  ~]$ sudo rpm import ./RPM-GPG-KEY-MCCF
		

To list the packages in the repo

			[  ~]$ sudo yum --disablerepo "*" --enablerepo "mccf" list available
		
This list should match the list from the reqoquery