Project

General

Profile

Actions

Installing latest code » History » Revision 1

Revision 1/26 | Next »
Romain Vrignaud, 11/17/2011 08:55 AM


Installing latest code

Latest stable version can be found under the files section

Latest source code

You can get the latest source code of Foreman from the git repository hosted at github.
This is the preferred way to get Foreman if you want to benefit from the latest improvements. By using the git repository you can also upgrade more easily.

to get latest "development" version do:

git clone git://github.com/ohadlevy/foreman.git foreman
cd foreman
git submodule init
git submodule update
  • if you are behind a proxy or firewall and dont have access to github using the git protocol, use http protocol instead (e.g.)
    git clone http://github.com/ohadlevy/foreman.git foreman
    cd foreman
    sed -i 's/git:\/\//http:\/\//g' .gitmodules
    git submodule init
    git submodule update
    

Daily snapshot

You can also fetch the latest daily snapshot of the development version at:
http://theforeman.org/foreman-nightly.tar.bz2

Updated by Romain Vrignaud over 12 years ago · 1 revisions