Adds Linux functionality to the stub project#1
Merged
Merged
Conversation
Note: the runtime fails because the 12.x series of Postman builds are
compiled against a newer compiler version workspace (such as GCC
12+ on Ubuntu 22.04), which implements the C++ standard library
symbol version GLIBCXX_3.4.30. Standard RHEL 9 ships natively
with GCC 11, which only implements symbol mappings up to
GLIBCXX_3.4.29 inside the default /lib64/libstdc++.so.6 library
engine. Using wrapper allow passing the application the correct
guidance for GLIBC-usage
RHEL 9 requires back-rev Postman version: * Obviates the need for the `gcc-toolset-13-runtime` RPM * Obviates the need to try to use a wrapper (return to using a symlink)
* Using wrapper allows suppressing unwanted diagnostic outputs * Using wrapper allows suppressing attempts to use GPU if calling user is coming in via an SSH tunnel (rather than using the full graphical desktop experience)
Note: The parameters: * `sandbox_enabled` (default: `false`) * `whitelist_enabled` (default: `true`) Are set to those valued because this formula is expected to be used primarily on systems that have had STIG-compliant hardening routines applied. `sandbox_enabled` is set to `false` because STIG-hardening disables the namespaces required by the application's sandboxing capability. `whitelist_enabled` is set to `true` STIG-hardened environments typically have the `fapolicyd` service configured for whitelisting of specific aplications
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.
See CHANGELOG.md for summary of changes