Foreman rpm is now available

Added by Ohad Levy 5 months ago

I've created RPM (RHE5) for foreman, to install, please create a yum repo

Puppet manifest

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

Quick and dirty

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

Update: Additional rpms might be required from epel repo's

if you just want to get the rpms:

http://theforeman.org/repo/el5/noarch/foreman-0.1.4-3.noarch.rpm
http://theforeman.org/repo/el5/noarch/rubygem-rack-1.0.1-1.noarch.rpm
and
http://theforeman.org/repo/el5/SRPM/foreman-0.1.4-2.src.rpm

feedback / comments are welcomed.

Ohad


Comments