diff options
author | Justin Stephenson <jstephen@redhat.com> | 2016-12-01 17:14:58 -0500 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2016-12-02 16:10:12 +0000 |
commit | 20ab26dab80516a221b0428521cbc2f6e0e498cd (patch) | |
tree | 1eac458c16ec41d78ef6807433581f1fb1b52ad1 | |
parent | 62a70f4c00e6101ef2421cb6b4574a43b8eff9c3 (diff) | |
download | sos-20ab26dab80516a221b0428521cbc2f6e0e498cd.tar.gz |
[sssd] Retrieve SSSD created krb5 snippets
Obtain SSSD automatically-generated krb5 snippet configuration files
for localauth plugin, domain_realm mapping, and libdefaults additions.
These files are pulled in by libkrb5 with an 'includedir' line in
/etc/krb5.conf.
Signed-off-by: Justin Stephenson <jstephen@redhat.com>
Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
Closes #897.
-rw-r--r-- | sos/plugins/sssd.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sos/plugins/sssd.py b/sos/plugins/sssd.py index 29ef8c8f..915b5a56 100644 --- a/sos/plugins/sssd.py +++ b/sos/plugins/sssd.py @@ -29,6 +29,7 @@ class Sssd(Plugin): self.add_copy_spec([ "/etc/sssd/sssd.conf", "/var/log/sssd/*", + "/var/lib/sss/pubconf/krb5.include.d/*", # SSSD 1.14 "/etc/sssd/conf.d/*.conf" ]) |