forked from NVIDIA/doca-sosreport
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set nvidia config as the default configuration for tool
instead of running with a specific config file sos report --config-file /etc/sos/sos-mlx-cloud-verification.conf sos report --config-file /etc/sos/sos-nvidia.conf user will be able to run only sos report
- Loading branch information
Showing
2 changed files
with
40 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
[global] | ||
# Set global options here that are not component specific | ||
# If you would like one global default value to be specifically overridden for | ||
# just one component, but not others, you may override that value in the | ||
# component specific section below | ||
#verbose = 3 | ||
#verify = yes | ||
batch = yes | ||
log-size = 10 | ||
journal_size = 10 | ||
plugin_timeout = 300 | ||
cmd_timeout = 300 | ||
low_priority = True | ||
|
||
[report] | ||
# Options that will apply to any `sos report` run should be listed here. | ||
# Note that the option names *must* be the long-form name as seen in --help | ||
# output. Use a comma for list delimitations. | ||
skip-plugins = ssh, flatpack, login | ||
|
||
[collect] | ||
# Options that will apply to any `sos collect` run should be listed here. | ||
# Note that the option names *must* be the long-form name as seen in --help | ||
# output. Use a comma for list delimitations | ||
#primary = myhost.example.com | ||
#ssh-key = /home/user/.ssh/mykey | ||
#password = true | ||
|
||
[clean] | ||
# Options that will apply to any `sos clean|mask` run should be listed here. | ||
# Note that the option names *must* be the long-form name as seen in --help | ||
# output. Use a comma for list delimitations | ||
#domains = mydomain.com | ||
#no-update = true | ||
|
||
[plugin_options] | ||
# Specify any plugin options and their values here. These options take the form | ||
# plugin_name.option_name = value | ||
#rpm.rpmva = off |
This file contains 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