lp:sosreport
- Get this branch:
- bzr branch lp:sosreport
Branch merges
Import details
This branch is an import of the HEAD branch of the Git repository at https://github.com/sosreport/sosreport.git.
Last successful import was .
Recent revisions
- 4334. By Jake Hunsaker <email address hidden>
-
[global] Fix alerts for mixing implicit and explicit returns
This commit resolves the alerts generated by GitHub code scanning for
mixing implicit and explicit returns. In most cases this is simply
changing empty or implicit returns to `return None`, while in a few
other places the return logic is slightly reworked.Signed-off-by: Jake Hunsaker <email address hidden>
- 4333. By Jake Hunsaker <email address hidden>
-
[git] Ignore DS_Store files from Finder
Updates .gitignore to exclude .DS_Store files that Finder may drop in
the tree.Signed-off-by: Jake Hunsaker <email address hidden>
- 4332. By Arif Ali
-
[networking] obfuscate password in netplan
resolves: #3365
Signed-off-by: Arif Ali <email address hidden> - 4331. By Evgeni Golov
-
[foreman] collect schema_migrations table
Signed-off-by: Evgeni Golov <email address hidden>
- 4330. By Kevin Traynor
-
[openvswitch] Add DPDK info commands
Add commands that report info about DPDK lcore usage,
log levels and memory usage.Signed-off-by: Kevin Traynor <email address hidden>
- 4329. By Jake Hunsaker <email address hidden>
-
[plugins,distros] Resolve code alerts for file not always closed
Fix a number of outstanding "File is not always closed" errors highlighted by
GitHub's code scanning.This involves (almost exclusively) changing such as:
for line in open('/some/file', 'r').read(
).splitlines( ): To using a context manager to ensure the file is always closed:
with open('/some/file', 'r') as sfile:
for line in sfile.read().splitlines( ): ...or something similar. Overall the logic of what a specific block of code was
doing (mostly in plugins) is not changed however.Signed-off-by: Jake Hunsaker <email address hidden>
- 4328. By Jon Cope <email address hidden>
-
[microshift] add kube-apiserver audit logs to collection path
do not perform redundant dir-exists check
Signed-off-by: Jon Cope <email address hidden>
- 4327. By Pablo Acevedo Montserrat <email address hidden>
-
[microshift] Add /etc/microshift file copy spec
Signed-off-by: Pablo Acevedo Montserrat <email address hidden>
- 4326. By <email address hidden> <email address hidden>
-
[virsh] Add --all for virsh pool and net
Adding --all will also get inactive pools/net. This would be helpful
when working with a pool/net which are failing to start.Signed-off-by: Nijin Ashok <email address hidden>
- 4325. By Evgeny Slutsky <email address hidden>
-
[greenboot] seperate logs to a standalone plugin.
Signed-off-by: Evgeny Slutsky <email address hidden>
Branch metadata
- Branch format:
- Branch format 7
- Repository format:
- Bazaar repository format 2a (needs bzr 1.16 or later)