RPM's distribution based installation » History » Version 1
Romain Vrignaud, 11/17/2011 08:53 AM
| 1 | 1 | Romain Vrignaud | h1. RPM's distribution based installation |
|---|---|---|---|
| 2 | |||
| 3 | We maintain a repository for RHEL and Fedora (and clones) - you may add it via: |
||
| 4 | |||
| 5 | h3. Puppet |
||
| 6 | |||
| 7 | <pre> |
||
| 8 | yumrepo { 'foreman': |
||
| 9 | descr => 'Foreman Repo', |
||
| 10 | baseurl => 'http://yum.theforeman.org/stable', |
||
| 11 | gpgcheck => '0', |
||
| 12 | enabled => '1' |
||
| 13 | } |
||
| 14 | </pre> |
||
| 15 | |||
| 16 | h3. Quick and dirty |
||
| 17 | |||
| 18 | <pre> |
||
| 19 | cat > /etc/yum.repos.d/foreman.repo << EOF |
||
| 20 | [foreman] |
||
| 21 | name=Foreman Repo |
||
| 22 | baseurl=http://yum.theforeman.org/stable |
||
| 23 | gpgcheck=0 |
||
| 24 | enabled=1 |
||
| 25 | EOF |
||
| 26 | </pre> |
||
| 27 | |||
| 28 | <pre> |
||
| 29 | yum install foreman |
||
| 30 | </pre> |
||
| 31 | |||
| 32 | |||
| 33 | if you just want to get the rpms: |
||
| 34 | |||
| 35 | http://yum.theforeman.org |