Hi Ohad,
I wasnt able to install foreman over http from git using you installation instructions.
[user@machine local]$ git clone
http://github.com/ohadlevy/foreman.git foreman2
Initialized empty Git repository in /usr/local/foreman2/.git/
Cannot get remote repository information.
Perhaps git-update-server-info needs to be run there?
so I got the source from the master as a zip
I get the following error when running
rake db:migrate
rake aborted!
undefined method `to_label' for class `Host'
/usr/local/foreman/app/models/host.rb:19
I after moving the alias to after the method declaration it works fine
# Returns the name of this host as a string
# String: the host's name
def to_label
name
end
alias to_s to_label
do I have the wrong source version somehow?
regards,
Dan