-
-
Notifications
You must be signed in to change notification settings - Fork 35
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
RVM not installed automatically due to signed releases #49
Comments
it should be as easy as: namespace :app do
task :update_rvm_key do
execute :gpg, "--keyserver hkp://keys.gnupg.net --recv-keys D39DC0E3"
end
end
before "rvm1:install:rvm", "app:update_rvm_key" replace |
Wouldn't it be a better idea to add this to this gem itself? It is meant to install RVM automatically, but this step currently fails because of this failed check. Alternatively, can RVM be installed without verifying the GPG signature? |
I had a look into adding the key installation automatically, it would be best to run it on server from the RVM installation script, but this would bloat the script, I'm thinking on writing extra tool to allow the key installation and signature verification, maybe something that will wrap |
Would it be possible to force installation without checking verifying the key? We would basically return to the previous (working) situation . — On Mon, Nov 17, 2014 at 3:08 PM, Michal Papis [email protected]
|
no there is no flag to skip checking the signatures when GPG software is available, I will be working on the tool to download and run everything in one command ... it might take some time for now use the single addition, I will update README to contain it |
Thanks. I've added a task to my provisioning scripts to add the gpg key to apt. That'll work for now. |
Hmm.. I get namespace :app do
task :update_rvm_key do
on roles :all do
execute :gpg, "--keyserver hkp://keys.gnupg.net --recv-keys D39DC0E3"
end
end
end
before "rvm1:install:rvm", "app:update_rvm_key" and then it works! |
could you open a pull request with your fix (btw. we are looking for contributors / maintainers if you have time & will for it - drop me an email) |
Installation fails due to missing key. See screenshot below:
The text was updated successfully, but these errors were encountered: