forked from sosreport/sos
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add sos-mlx-cloud-verification.conf to repo and debian build
- Loading branch information
Showing
7 changed files
with
69 additions
and
14 deletions.
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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
doca-sosreport (4.8.0-1) unstable; urgency=low | ||
|
||
* replace sosreport with doca-sosreport | ||
|
||
-- Michael Filanov <[email protected]> Thu, 27 Jun 2024 14:40:01 +0100 | ||
|
||
sosreport (4.7.2) noble; urgency=medium | ||
|
||
* New upstream release | ||
|
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
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
sos.conf etc/sos/ | ||
sos-mlx-cloud-verification.conf etc/sos/ |
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 |
---|---|---|
@@ -1,15 +1,17 @@ | ||
#!/usr/bin/make -f | ||
|
||
export PYBUILD_NAME=sosreport | ||
export PYBUILD_NAME=doca-sosreport | ||
export PYBUILD_SYSTEM=distutils | ||
|
||
%: | ||
dh $@ --with python3 --buildsystem=pybuild | ||
|
||
override_dh_install: | ||
# Move config file to the right location. | ||
mv debian/sosreport/usr/config/sos.conf debian/sosreport/etc/sos/sos.conf | ||
mv debian/doca-sosreport/usr/config/sos.conf debian/doca-sosreport/etc/sos/sos.conf | ||
mv debian/doca-sosreport/usr/config/sos-mlx-cloud-verification.conf debian/doca-sosreport/etc/sos/sos-mlx-cloud-verification.conf | ||
# Remove unnecessary unused dir. | ||
rm -rf debian/sosreport/usr/config | ||
rm -rf debian/doca-sosreport/usr/config | ||
|
||
override_dh_auto_test: | ||
nosetests3 -v --with-cover --cover-package=sos tests/unittests --ignore-files="policy_tests\.py" |
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
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,40 @@ | ||
[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 = 120 | ||
cmd_timeout = 30 | ||
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 | ||
enable-plugins = rdma | ||
|
||
[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