| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
| |
Ensures that the parsed values for any of the plugin enablement or
plugin option options are parsed as a list, by changing their parser
action to 'extend', like we do with report.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
| |
Rather than leave spurious temp directories on the filesystem from
gracefully failed runs, always run cleanup().
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
|
|
| |
Changes the way collector adds options to the parser, such that they are
now logically grouped together. Options that modify how report is run on
nodes are now under a 'Report Passthru' group, while collector-specific
options are listed under a 'Collector' group. This should make --help
easier to consume by users.
Additionally adds the default global options to a 'Global' group.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
| |
Following flake8 review, replace the * import of exceptions, and instead
explicitly import each exception used in sosnode.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
| |
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Under specific circumstances, we previously could end up prompting for
SSH passwords for nodes that would then be overridden by
--password-per-node, which in turn could potentially cause issues for
use cases where sudo was used both locally and remotely where the sudo
passwords differed (as indicated by password-per-node).
Adjust prompting and setting of the sudo passwords so that we prompt the
user the correct (minimal) amount of times, and the correct passwords
are used for sudo usage (when needed).
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
| |
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
| |
Adds support for newer sos report options like `allow_system_changes`
and `plugin_timeout` to collector. These options are version dependent,
so they are evaluated on a per-node basis during final sos command
construction.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
| |
Fixes an issue where we would still attempt to run through local sos
report setup if we need sudo but the password was not given. This final
catch is done right before sosreport is called on connected nodes, so
it will catch any future conditions where no_local gets set after the
initial configuration check.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
| |
If we detect that we only have localhost 'connected', exit as it is
unlikely to be desired to use sos collect to capture an sosreport just
from localhost.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
|
| |
If we end up with no cluster determination, but have a manual list of
nodes provided, then attempt to continue by setting the cluster type to
JBON (just a bunch of nodes - our 'none' cluster).
This will not address situations where a cluster type cannot be
determined, and the node strings are all regexes.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
| |
Local report generation when running as a non-root user were broken
following the transition away from the Configuration() approach. Now,
adjust to the new way we execute so that we properly detect non-root
runs, prompt for a sudo password if needed, and/or fail appropriately if
we cannot use sudo locally for generating the report.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Not all distributions want to add a dependency on pexpect as a default
for the installation of sos, as report does not require it.
As such, if we fail to import the collector module, add placeholder
psuedo-components so that --help output (and attempts to run the command
outright) still indicate that the functionality is available in some
manner, just with an additional step from the user.
This covers two distinct failures during the collector import:
1. The collector module is not present. This implies that the
module has been split into sub-packages. The user will need
to install the appropriate sub-package for their distro.
2. The pexpect package is not present. The user will just need
to install the python3 pexpect package.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
| |
Adds pexpect to the 18.04 native run installation step. For now, leaving
it out of the 16.04 run.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
| |
At some point in the transition process, it seems we stopped calling
`_validate_option()` on provided cluster options via the CLI. Fix that,
so that we can be sure that clusters are getting the data types they
expect for options they support.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
| |
Moves `ClusterOption` into sos.options, instead of living in
sos.collector.clusters.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
| |
Avoids overriding `_exit()` from `SoSComponent` by renaming the method
to simply `exit()`.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
| |
Adds a sos-collector executable under bin/ to serve as a redirection
point for legacy sos-collector commands
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
| |
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
| |
Changes the logging approach in `SoSNode` so that we more closely align
to the approach taken by report. That is, don't print info level
messages to console unless they are explicitly set to print to the
console - thus allowing us to get sufficient data from a run without
needing to always set verbosity higher.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
|
|
| |
Adds a general manpage for the sos command that then points to the
available components.
Renames sosreport.1 to sos-report.1 to match the component style, and
then symlinks sosreport.1 to it.
Adds a symlink from sos-collector.1 to sos-collect.1.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
| |
Adds the manpage from sos-collector to the tree as 'sos-collect', and
updates the instances of 'sos-collector' to 'sos collect' within the
manpage.
Additionally updates the man page to include newly available options.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
| |
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
| |
Various fixups for PEP8, PEP257, and unused imports as highlighted by
flake8.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Moves the functions from `SoSHost` into `Policy`, and adjusts the calls
in `SoSNode` appropriately.
Adds a `pkg_version` method to `PackageManager` to satisfy the version
checking requirements that had previously been using `SoSHost`.
Finally drops the sos/collector/hosts directory from the tree as it is
no longer used.
At this point, `sos collect` should be able to be run on any
distribution that has a defined `Policy`. Note that new policies will
need to specify 2 new class attrs, `sos_pkg_name` and `sos_bin_path` in
order for them to be supported as well.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Rather than load a `SoSHost` instance, `SoSNode` will now load a
`Policy` that is determined by the content of `/etc/os-release` on the
remote node, as this is a standardized file for Linux-based systems and
allows for reliable identification of the host.
Each per-node policy will load the host-side package information for use
by collector in determining cluster profile and sos capabilities.
This per-node policy will not however load an `InitSystem()` or a
`ContainerRuntime()`.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
| |
When loading a policy, there is now support for a `remote_exec`
parameter, which should be an ssh command, to which will be appended
`PackageManager` related commands so that collector can get package data
off of the remote nodes, without having to reimplement a subset of
`PackageManager` itself.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
| |
Exposes the `init` and `probe_runtime` parameters of `Policy` to all
existing vendor-defined policies. This will allow collector to replace
`SoSHost` with `Policy` while not loading the local system's init system
and container runtime information.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
|
| |
Updates the `check()` method within `Policy` to allow consumers to
specify a `remote` parameter that can be used in place of the locally
available files.
This is the first step in merging `SoSHost` from collector with the
standard `Policy` which is far better defined.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
| |
We should not have any exceptions to --batch being non-interactive, so
in the event that a user would need a password but fails to provide one
alongside the --batch option, it should be expected that the run will
fail, rather than stop to collect the password.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
| |
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
|
| |
Fixes `sos collect --list-options` to actually display known cluster
options, as this was initially lost/overlooked in the move from a
standalone utility to sos-4.0 integration.
Additionally, only setup a log file if none of the known `list*` options
are set for any component.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Previously, the ovirt (and family) cluster profile would attempt to set
a global SSH key if the ovirt-generated key was locally available by
changing the options entry for ssh_key. This no longer worked since
decoupling the shared dict, so instead create a new mechanism by which
clusters may set this.
It may prove necessary in the future to extend this functionality to
arbitrary settings, however for now I do not see that being common
place.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
| |
Moves the update of options for a node based on a cluster profile out of
`Cluster()` and into `SoSNode()`, since the commons dict is not a shared
instance.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
| |
Since moving away from a shared dict configuration, we need to do the
initial steps of displaying the disclaimer, prompting for input, and
connecting to the master to determine a cluster type in a slightly
different order.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Moves archive setup and cleanup directly into `SoSComponent()`, then has
`SoSCollector` utilize the class rather than manually creating the
archive at the end of a run. `SoSReport()` has been updated where needed
to leverage the new location of `cleanup()`.
This also adds encryption options to `SoSCollector()` to encrypt the
final archive. It may prove later than this option should also (or
instead) pass the encryption option to the sosreport runs that occur on
the hosts.
Note that this commit marks the point from which functional, complete,
runs of `sos collect` are expected to run without error and result in a
tarball of one or more collected sosreports.
Resolves: #1988
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
| |
Moves the actual workings of SoSCollector() into an execute() method to
be called by the sos binary. The initialization of SoSCollector now just
handles policy and logging setup, and option validation. All connections
to nodes and further command execution is now gated behind execute()
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Moves the `collect` component away from using the Configuration class
and merges relevant options into the SoSOptions framework, whereas other
options are made into either class attrs or part of a 'commons' dict
similar to what we do in `report`.
At this point, `sos collect` has basic discovery functionality, meaning
that a user can run it locally or point it to a master node via
`--master` and get a returned list of nodes that would be collected
from. However, collection is likely to fail even if the remote command
execution works.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
| |
Rather than create multiple loggers, transition the sos-collector code
to instead use the logger created by SoSComponent() initialization.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
As part of moving away from the Configuration() approach, move the
loading of support host and cluster types directly into SoSCollector().
Again, `sos collect` is not expected to be functional as of this commit,
these are iterative updates to move towards that goal. Similarly, it is
still desired that by the end of this patch series, "host types" are
really just `Policy()` instances.
Related: #1988
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This commit represents the first import of the sos-collector project
into sos natively for 4.0. It is not expected to be functional as of
this commit.
A minimum integration has been done at this point - namely tying
SoSCollector() as a SoSComponent() subclass, and hooking up the parser
functions.
SoSCollector will load a policy in the same way as 'sos report', and
should use the same logging methods, which will be done in a future
commit in this series.
As a divergence from the standalone sos-collector project, this
integration aims to hook in host detection with the existing Policy
model provided by sos. Additionally, we should be able to drop the
Configuration dict-subclass approach by the time this series is ready
for merge.
Related: #1988
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
| |
Fixes a unittest failure due to an attempt to pass print() a `file`
keyword for Red Hat, which is no longer accepted in python3
Additionally fixes 2 string related errors in the test suite since
changing from python2 to python3.
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
| |
Collect data of "insights-client --offline" into
sos_commands/insights/insights-client-dump directory.
Resolves: #2030
Signed-off-by: Pavel Moravec <pmoravec@redhat.com>
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Currently it checks for the existance of systemd using two
different directories depending on the distro used. Updating
systemd trigger to handle the detection of checking for
systemd more reliably and generically.
Reference:
https://github.com/systemd/systemd/blob/master/src/libsystemd/sd-daemon/sd-daemon.c#L598-L604
Closes: #2013
Resolves: #2029
Signed-off-by: Heather Lemon <heather.lemon@canonical.com>
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Substitute sensitive informations about oidc
found in landscape service configuration file.
From release 19.10, Landscape can use OpenID-Connect
(OIDC) to authenticate users. To enable OpenID-Connect
support, please add oidc-issuer, oidc-client-id and
oidc-client-secret to /etc/landscape/service.conf in
the [landscape] section.
Reference:
https://docs.ubuntu.com/landscape/en/onprem-auth#openid-connect-support
Closes: #2023
Resolves: #2025
Signed-off-by: Eric Desrochers <eric.desrochers@canonical.com>
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
|
| |
List of ClariiOn IP addresses should be provided via
-k navicli.ipaddrs plugopt, as a space separated list.
Closes: #405
Resolves: #2020
Signed-off-by: Pavel Moravec <pmoravec@redhat.com>
Signed-off-by: Bryan Quigley <bryan.quigley@canonical.com>
|
|
|
|
|
|
|
| |
Resolves: #2022
Signed-off-by: Arif Ali <arif.ali@canonical.com>
Signed-off-by: Bryan Quigley <bryan.quigley@canonical.com>
|
|
|
|
|
|
|
|
|
|
| |
Uses ndctl, daxctl, and ipmctl utilities
Closes: #1398
Resolves: #2021
Signed-off-by: Steve Scargall <steve.scargall@intel.com>
Signed-off-by: Bryan Quigley <bryan.quigley@canonical.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Make add_copy_spec & add_cmd_output method
to accept a list.
* Log directory "/var/log/landscape-server" is
now fully deprecated. Nowadays, all supported
versions are logging inside "/var/log/landscape".
Resolves: #2012
Signed-off-by: Eric Desrochers <eric.desrochers@canonical.com>
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|
|
|
|
|
|
|
|
|
|
| |
Mostly unused import or missing variables.
Including 1 mistyped variable by me.
Resolves: #2011
Signed-off-by: Bryan Quigley <bryan.quigley@canonical.com>
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
|