Prevent 'Use of uninitialized value' warnings#42
Open
willvincent wants to merge 1 commit intolinode:masterfrom
Open
Prevent 'Use of uninitialized value' warnings#42willvincent wants to merge 1 commit intolinode:masterfrom
willvincent wants to merge 1 commit intolinode:masterfrom
Conversation
…esses run as users NOT in host machine passwd file.
|
Might be useful to just display the raw UID number instead of an empty string if it's not found in the password database. it's what ps(1) would do and what I would expect. |
Author
|
Whatever the case.. linode doesn't seem terribly interested in continuing to support this codebase, so I guess it's on those of us affected to implement the solution we prefer, but probably not expect that this PR will ever be merged. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When processes running within docker containers are running as users without an entry in the host machine's /etc/passwd file, many warnings will appear in the log. While they're just warnings and could be ignored, they do produce a great deal of excess noise that would be better to prevent.
One solution would be to create user entries in the passwd file, but that really shouldn't be necessary. Instead we can just cast the user value to an empty string to prevent the warnings entirely.
This resolves #24