Skip to content
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

Compatibility with Ubuntu 18.04 #375

Closed
Genda1ph opened this issue Sep 26, 2019 · 4 comments
Closed

Compatibility with Ubuntu 18.04 #375

Genda1ph opened this issue Sep 26, 2019 · 4 comments
Labels
Bug Something isn't working Help Wanted Assistance is required to resolve this issue Priority: High Critical work that must be completed Stale This is marked as stale and will be closed shortly Tech Debt Will improve the maintainability of the codebase

Comments

@Genda1ph
Copy link

Hello, I stumbled upon dependency issue using this cookbook with Ubuntu 18.04.

For Debian and Ubuntu you install libreadline6 and libreadline6-dev, however Ubuntu 18.04 doesn't have either of those packages, instead you should use libreadline7 and libreadline-dev (yes, the one without version has major package version 7), additionally I needed ruby-dev, but this might be my local issue.

This dependency should be listed in providers/ruby.rb and is easily fixed, at least for 18.04, by adding a condition:

pkgs += %w{ libreadline6 libreadline6-dev } if node['platform_version'].to_f < 18.0
pkgs += %w{ libreadline7 libreadline-dev ruby-dev} if node['platform_version'].to_f > 18.0

This allowed my chef-client run to complete.
It would be great if you could add this small change under v0.9.5.

Thanks!

@fieldse
Copy link

fieldse commented Mar 9, 2020

This is somewhere upstream in the install_rubies method of chef_rvm_recipe_helpers.rb

Chef::Exceptions::Package                                                                                                                                                                 
    -------------------------                                                                                                                                                                 
    rvm_environment[ruby-2.3.1] (/root/chef-solo/cookbooks-2/rvm/providers/default_ruby.rb line 37) had an error: Chef::Exceptions::Package: rvm_ruby[ruby-2.3.1] (/root/chef-solo/cookbooks-2
/rvm/providers/environment.rb line 70) had an error: Chef::Exceptions::Package: apt_package[libreadline6] (/root/chef-solo/cookbooks-2/rvm/providers/ruby.rb line 174) had an error: Chef::Exc
eptions::Package: libreadline6 has no candidate in the apt-cache                                                                                                                              
                                                                                                                                                                                              
    Cookbook Trace:                                                                                                                                                                           
    ---------------                                                                                                                                                                           
    /root/chef-solo/cookbooks-2/rvm/providers/ruby.rb:176:in `block in install_ruby_dependencies'                                                                                             
    /root/chef-solo/cookbooks-2/rvm/providers/ruby.rb:173:in `each'                                                                                                                           
    /root/chef-solo/cookbooks-2/rvm/providers/ruby.rb:173:in `install_ruby_dependencies'                                                                                                      
    /root/chef-solo/cookbooks-2/rvm/providers/ruby.rb:45:in `block in class_from_file'                                                                                                        
    /root/chef-solo/cookbooks-2/rvm/providers/environment.rb:74:in `ruby_resource'                                                                                                            
    /root/chef-solo/cookbooks-2/rvm/providers/environment.rb:39:in `block in class_from_file'                                                                                                 
    /root/chef-solo/cookbooks-2/rvm/providers/default_ruby.rb:41:in `block in class_from_file

@xorima
Copy link
Contributor

xorima commented May 31, 2020

So this cookbook needs to actually test modern operating systems which will catch this (and other issues I suspect), #398 has been raised for this, but if anyone is willing to help it would be greatly appreciated.

Note: If you do want to help I am happy to guide and assist on anything people are unsure of

@xorima xorima added Bug Something isn't working Help Wanted Assistance is required to resolve this issue Priority: High Critical work that must be completed Tech Debt Will improve the maintainability of the codebase labels May 31, 2020
@github-actions
Copy link

github-actions bot commented Jun 2, 2021

Marking stale due to inactivity. Remove stale label or comment or this will be closed in 7 days. Alternatively drop by the #sous-chefs channel on the Chef Community Slack and we'll be happy to help! Thanks, Sous-Chefs.

@github-actions github-actions bot added the Stale This is marked as stale and will be closed shortly label Jun 2, 2021
@github-actions
Copy link

Closing due to inactivity. If this is still an issue please reopen or open another issue. Alternatively drop by the #sous-chefs channel on the Chef Community Slack and we'll be happy to help! Thanks, Sous-Chefs.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Bug Something isn't working Help Wanted Assistance is required to resolve this issue Priority: High Critical work that must be completed Stale This is marked as stale and will be closed shortly Tech Debt Will improve the maintainability of the codebase
Projects
None yet
Development

No branches or pull requests

3 participants