generated from linux-system-roles/template
-
Notifications
You must be signed in to change notification settings - Fork 6
fix: Change installation path/location for moneo tool #54
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
Merged
richm
merged 1 commit into
linux-system-roles:main
from
ggoklani:Change_Install_path_for_moneo_monitoring_tool
Jan 29, 2026
Merged
fix: Change installation path/location for moneo tool #54
richm
merged 1 commit into
linux-system-roles:main
from
ggoklani:Change_Install_path_for_moneo_monitoring_tool
Jan 29, 2026
Conversation
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
Reviewer's guide (collapsed on small PRs)Reviewer's GuideUpdates the moneo tool installation path to use the common Azure tools directory variable instead of a hard-coded path, aligning it with the standardized HPC directory structure. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey - I've left some high level feedback:
- Consider defining
__hpc_moneo_install_dirafter__hpc_azure_tools_dir(where that variable is declared) to avoid forward references and make the variable relationships clearer for future maintainers. - If the goal is to standardize layout across vendors, you might want to derive
__hpc_moneo_install_dirfrom a generic tools directory variable (e.g.__hpc_tools_dir) rather than an Azure-specific one so the role is easier to reuse in other cloud contexts.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- Consider defining `__hpc_moneo_install_dir` after `__hpc_azure_tools_dir` (where that variable is declared) to avoid forward references and make the variable relationships clearer for future maintainers.
- If the goal is to standardize layout across vendors, you might want to derive `__hpc_moneo_install_dir` from a generic tools directory variable (e.g. `__hpc_tools_dir`) rather than an Azure-specific one so the role is easier to reuse in other cloud contexts.Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
richm
approved these changes
Jan 29, 2026
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.
Enhancement:
Change installation path/location for moneo tool
The structure we want to use for static files follows this template:
{{/opt/hpc//bin/ # one-off binaries and scripts
/opt/hpc//lib/... # resources and libraries
/opt/hpc//tools/... # standalone tools
/opt/hpc//tests/ # test scripts for local/CI testing}}
For runtime files (e.g. configuration files set up by boot services), we will store them in:
/var/hpc//....
These common directories will be defined by the following set of variables:
{{_hpc_resource_dir # /opt/hpc//
_hpc_tools_dir # /opt/hpc//tools/
_hpc_tests_dir # /opt/hpc//tests/
_hpc_runtime_dir # /var/hpc//}}
Reason:
To Maintain standard for all tools and packages.
Result:
NA
Issue Tracker Tickets (Jira or BZ if any): https://issues.redhat.com/browse/RHELHPC-140
Summary by Sourcery
Enhancements: