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

dpkg provider cleanup #4185

Merged
merged 2 commits into from
Nov 21, 2015
Merged

dpkg provider cleanup #4185

merged 2 commits into from
Nov 21, 2015

Conversation

lamont-granquist
Copy link
Contributor

  • :update and :install are now treated the same way and throw the
    same exceptions
  • :remove and :purge don't require the source at all, so don't do
    any checking on that
  • fix some convoluted side-effecty logic in load_current_resource
  • load_current_resource now correctly gets the dpkg state on
    :remove and :purge when the file does not exist (pretty sure
    the old logic did not)
  • fixed the FIXME about using en_US.UTF-8 (the default for shell_out!)
  • just use shell_out! to throw exceptions
  • clean up all the specs and remove all the instance vars from the code

@lamont-granquist
Copy link
Contributor Author

@chef/client-core more review

@lamont-granquist
Copy link
Contributor Author

travis failure is unrelated: chef/chef-server#624

@thommay
Copy link
Contributor

thommay commented Nov 19, 2015

this looks just peachy 👍

def run_noninteractive(command)
shell_out_with_timeout!(command, :env => { "DEBIAN_FRONTEND" => "noninteractive", "LC_ALL" => nil })
shell_out_with_timeout!(command, :env => { "DEBIAN_FRONTEND" => "noninteractive" })
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why was it originally left as nil? was it a parsing issue on systems with foreign character sets?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It seems to have been in response to this bug:

https://tickets.opscode.com/browse/CHEF-281

The root cause of that bug however was using the "en_US" locale which didn't exist on systems without en_US installed. We've got complicated workarounds now which favor all kinds of different en_US locales and then fallback to to the 'C' locale as default.

The commit which introduced it just says:

Author: Diego Algorta diego@oboxodo.com
Date: Fri Aug 14 19:54:31 2009 -0300

Make sure all Package providers run with the system's locale and not C locale.

Surely people want they're packages to corrently detect the system's
locale when configuring themselves.

And I disagree completely with that logic. If that logic was right, then if you installed a package with your machine set to en_US.UTF-8 and then changed your locale to de_DE.UTF-8 you would have to reinstall all your packages to get the "locale detection on package installation" right. Packages can't have a requirement to 'detect' the locale on installation or else locale switching would be completely broken.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

At some point we also tore it out of all the rest of the package providers, including the apt provider so that now they call shell_out_with_timeout! which calls shell_out! and this is the only one that still overrides its LC_ALL setting. Pretty certain this line of code is just a cargo cult now. If it wasn't then the changes introduced in the apt provider would have broken the world a long time ago.

@btm
Copy link
Contributor

btm commented Nov 20, 2015

👍

- :update and :install are now treated the same way and throw the
  same exceptions
- :remove and :purge don't require the source at all, so don't do
  any checking on that
- fix some convoluted side-effecty logic in load_current_resource
- load_current_resource now correctly gets the dpkg state on
  :remove and :purge when the file does not exist (pretty sure
  the old logic did not)
- fixed the FIXME about using en_US.UTF-8 (the default for shell_out!)
- just use shell_out! to throw exceptions
- clean up all the specs and remove all the instance vars from the code
lamont-granquist added a commit that referenced this pull request Nov 21, 2015
@lamont-granquist lamont-granquist merged commit 2fe875c into master Nov 21, 2015
@lamont-granquist lamont-granquist deleted the lcg/dpkg-refactor branch January 21, 2016 19:04
@chef chef locked and limited conversation to collaborators Nov 16, 2017
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants