Project

General

Profile

Actions

RPM's distribution based installation » History » Revision 1

Revision 1/31 | Next »
Romain Vrignaud, 11/17/2011 08:53 AM


RPM's distribution based installation

We maintain a repository for RHEL and Fedora (and clones) - you may add it via:

Puppet

yumrepo { 'foreman':
    descr => 'Foreman Repo',
    baseurl => 'http://yum.theforeman.org/stable',
    gpgcheck => '0',
    enabled => '1'
}

Quick and dirty

cat > /etc/yum.repos.d/foreman.repo << EOF
[foreman]
name=Foreman Repo
baseurl=http://yum.theforeman.org/stable
gpgcheck=0
enabled=1
EOF
yum install foreman

if you just want to get the rpms:

http://yum.theforeman.org

Updated by Romain Vrignaud over 12 years ago · 1 revisions