-
Notifications
You must be signed in to change notification settings - Fork 296
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ppc64 support to architecture #155
Comments
@ramereth so is this an issue with omnibus-ruby? I don't quite understand why it's opened here... |
The problem is I want to use |
I'm not sure why it isn't just using what |
So - here's the code: # Return the architecture of the machine, as determined by Ohai.
# @return [String] Either "sparc" or "intel", as appropriate
# @todo Is this used? Doesn't appear to be...
def architecture
Ohai.kernel['machine'] =~ /sun/ ? 'sparc' : 'intel'
end @lamont-granquist what are you thoughts here? Should we just make @ramereth you have access to the |
@ramereth you can get the true value of machine using |
this method should clearly die and we should use the Ohai object directly per your mass-commit to convert to that... |
That method is deprecated on master |
I'm working on getting chef built on
ppc64
but ran into an issue with building openssl. I discovered thatppc64
is not an architecture that omnibus knows about looking atlibs/omnibus/software.rb:426
. I would like to have it added so that it can be used inomnibus-software
. I'll try submitting a PR soon.Currently it only supports sparc and defaults to intel otherwise.
The text was updated successfully, but these errors were encountered: