fix: add procps-ng package to RHEL STIG daemon image for QoS configur…#294
Merged
almaslennikov merged 1 commit intoMellanox:mainfrom Feb 16, 2026
Merged
fix: add procps-ng package to RHEL STIG daemon image for QoS configur…#294almaslennikov merged 1 commit intoMellanox:mainfrom
almaslennikov merged 1 commit intoMellanox:mainfrom
Conversation
…ation The DMS service uses /usr/bin/mlnx_qos to handle QoS configuration (trust mode and PFC settings). The mlnx_qos Python script internally depends on the 'ps' command to check running processes. The STIG-hardened RHEL images strip out procps-ng for security hardening, causing QoS configuration to fail with: FileNotFoundError: [Errno 2] No such file or directory: 'ps' This results in NicDevice runtime configuration failures with the error: "failed to get trust mode: failed to run get path command: exit status 1" Add procps-ng to the nic-configuration-daemon STIG RHEL image to resolve this dependency. The Ubuntu STIG images already include procps and are not affected. Signed-off-by: Fred Rolland <frolland@nvidia.com>
Greptile SummaryAdded
Confidence Score: 5/5
Important Files Changed
Last reviewed commit: 1407279 |
heyvister1
approved these changes
Feb 15, 2026
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.
…ation
The DMS service uses /usr/bin/mlnx_qos to handle QoS configuration (trust mode and PFC settings). The mlnx_qos Python script internally depends on the 'ps' command to check running processes.
The STIG-hardened RHEL images strip out procps-ng for security hardening, causing QoS configuration to fail with:
FileNotFoundError: [Errno 2] No such file or directory: 'ps'
This results in NicDevice runtime configuration failures with the error: "failed to get trust mode: failed to run get path command: exit status 1"
Add procps-ng to the nic-configuration-daemon STIG RHEL image to resolve this dependency. The Ubuntu STIG images already include procps and are not affected.